diff --git a/.github/.gitversion.yml b/.github/.gitversion.yml index b7af4038..63f32804 100755 --- a/.github/.gitversion.yml +++ b/.github/.gitversion.yml @@ -12,23 +12,29 @@ # See the License for the specific language governing permissions and # limitations under the License. +workflow: GitHubFlow/v1 assembly-versioning-scheme: MajorMinorPatchTag +assembly-file-versioning-scheme: MajorMinorPatchTag mode: ContinuousDelivery branches: main: label: '' + regex: ^main$ release: label: rc + regex: ^releases?[/-](?.+) develop: label: beta increment: Patch + regex: ^develop$ feature: label: alpha.{BranchName} + regex: ^features?[/-](?.+) pull-request: label: pr increment: Patch + regex: ^(pull|pull\-requests|pr)[/-] ignore: sha: [] merge-message-formats: {} -next-version: 0.3.17 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cc1f0af5..ebf632a1 100755 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,8 +37,8 @@ jobs: outputs: semVer: ${{ steps.gitversion.outputs.semVer }} - preReleaseLabel: ${{ steps.gitversion.outputs.preReleaseLabel }} - majorMinorPatch: ${{ steps.gitversion.outputs.majorMinorPatch }} + preReleaseLabel: ${{ steps.gitversion.outputs.PreReleaseLabel }} + majorMinorPatch: ${{ steps.gitversion.outputs.MajorMinorPatch }} nuGetVersionV2: ${{ steps.gitversion.outputs.MajorMinorPatch }} steps: @@ -46,21 +46,18 @@ jobs: with: fetch-depth: 0 - - uses: actions/setup-dotnet@v3 + - uses: actions/setup-dotnet@v4 with: dotnet-version: "8.0.x" - # - name: Install GitVersion - # run: dotnet tool install --global GitVersion.Tool - - - name: Install GitVersion - uses: gittools/actions/gitversion/setup@v2.0.1 + - name: Setup GitVersion + uses: gittools/actions/gitversion/setup@v3.1.11 with: - versionSpec: '6.x' + versionSpec: '6.0.x' - name: Determine Version id: gitversion - uses: gittools/actions/gitversion/execute@v2.0.1 + uses: gittools/actions/gitversion/execute@v3.1.11 with: useConfigFile: true updateAssemblyInfo: true @@ -71,7 +68,7 @@ jobs: run: cat src/AssemblyInfo.cs - name: Upload AssemblyInfo - uses: actions/upload-artifact@v3.1.2 + uses: actions/upload-artifact@v4.6.2 if: always() with: name: assembly-info @@ -91,12 +88,12 @@ jobs: with: fetch-depth: 0 - - uses: actions/setup-dotnet@v3 + - uses: actions/setup-dotnet@v4 with: dotnet-version: "8.0.x" - name: Enable NuGet cache - uses: actions/cache@v3.3.2 + uses: actions/cache@v4.2.3 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} @@ -104,7 +101,7 @@ jobs: ${{ runner.os }}-nuget - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 with: languages: csharp @@ -117,7 +114,7 @@ jobs: working-directory: ./src - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 analyze: runs-on: ubuntu-latest @@ -132,7 +129,7 @@ jobs: with: fetch-depth: 0 - - uses: actions/setup-dotnet@v3 + - uses: actions/setup-dotnet@v4 with: dotnet-version: "8.0.x" @@ -146,7 +143,7 @@ jobs: cache: yes - name: Enable NuGet cache - uses: actions/cache@v3.3.2 + uses: actions/cache@v4.2.3 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} @@ -189,17 +186,17 @@ jobs: - 27017:27017 steps: - name: Set up JDK 17 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: zulu java-version: '17' - - uses: actions/setup-dotnet@v3 + - uses: actions/setup-dotnet@v4 with: dotnet-version: "8.0.x" - name: Enable NuGet cache - uses: actions/cache@v3.3.2 + uses: actions/cache@v4.2.3 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} @@ -273,12 +270,12 @@ jobs: with: fetch-depth: 0 - - uses: actions/setup-dotnet@v3 + - uses: actions/setup-dotnet@v4 with: dotnet-version: "8.0.x" - name: Enable NuGet cache - uses: actions/cache@v3.3.2 + uses: actions/cache@v4.2.3 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} @@ -300,10 +297,10 @@ jobs: popd - name: Upload Integration Test Results - uses: actions/upload-artifact@v3.1.2 + uses: actions/upload-artifact@v4.6.2 if: always() with: - name: integration-${{ matrix.feature }} + name: integration-${{ matrix.feature }}-${{ matrix.database }} path: | ${{ github.workspace }}/LivingDoc.html ${{ github.workspace }}/services.log @@ -316,8 +313,8 @@ jobs: env: NUGETVER: ${{ needs.calc-version.outputs.nuGetVersionV2 }} SEMVER: ${{ needs.calc-version.outputs.semVer }} - PRERELEASELABEL: ${{ needs.calc-version.outputs.preReleaseLabel }} - MAJORMINORPATCH: ${{ needs.calc-version.outputs.majorMinorPatch }} + PRERELEASELABEL: ${{ needs.calc-version.outputs.PreReleaseLabel }} + MAJORMINORPATCH: ${{ needs.calc-version.outputs.MajorMinorPatch }} strategy: matrix: os: [ubuntu-latest] @@ -338,12 +335,12 @@ jobs: with: fetch-depth: 0 - - uses: actions/setup-dotnet@v3 + - uses: actions/setup-dotnet@v4 with: dotnet-version: "8.0.x" - name: Enable NuGet cache - uses: actions/cache@v3.3.2 + uses: actions/cache@v4.2.3 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} @@ -352,7 +349,7 @@ jobs: - name: Download AssemblyInfo.cs id: download - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: assembly-info path: src/ @@ -389,9 +386,9 @@ jobs: dir -r ~/release - name: Upload CLI - uses: actions/upload-artifact@v3.1.2 + uses: actions/upload-artifact@v4.6.2 with: - name: artifacts + name: artifacts-cli path: ~/release retention-days: 7 @@ -405,7 +402,7 @@ jobs: - name: Upload Nuget if: ${{ matrix.os == 'ubuntu-latest' }} - uses: actions/upload-artifact@v3.1.2 + uses: actions/upload-artifact@v4.6.2 with: name: nuget path: ~/nupkg @@ -484,18 +481,18 @@ jobs: runs-on: windows-latest needs: [calc-version] env: - SEMVER: ${{ needs.calc-version.outputs.semVer }} + SEMVER: ${{ needs.calc-version.outputs.SemVer }} steps: - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/setup-dotnet@v3 + - uses: actions/setup-dotnet@v4 with: dotnet-version: "8.0.x" - name: Enable NuGet cache - uses: actions/cache@v3.3.2 + uses: actions/cache@v4.2.3 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} @@ -532,9 +529,9 @@ jobs: Get-ChildItem ~\release -Recurse - name: Upload docs - uses: actions/upload-artifact@v3.1.2 + uses: actions/upload-artifact@v4.6.2 with: - name: artifacts + name: artifacts-docs path: ~/release retention-days: 7 @@ -544,7 +541,7 @@ jobs: needs: [build, unit-test, integration-test] if: ${{ ! ( github.event.inputs.nuget ) && ! ( contains(github.ref, 'refs/heads/main') ) }} steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 id: download - name: List artifacts @@ -553,7 +550,7 @@ jobs: - name: Install grp run: dotnet tool install gpr -g - - uses: actions/setup-dotnet@v3 + - uses: actions/setup-dotnet@v4 env: NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} with: @@ -568,16 +565,16 @@ jobs: runs-on: ubuntu-latest needs: [calc-version, unit-test, docs, integration-test, analyze] env: - SEMVER: ${{ needs.calc-version.outputs.semVer }} - PRERELEASELABEL: ${{ needs.calc-version.outputs.preReleaseLabel }} - MAJORMINORPATCH: ${{ needs.calc-version.outputs.majorMinorPatch }} + SEMVER: ${{ needs.calc-version.outputs.SemVer }} + PRERELEASELABEL: ${{ needs.calc-version.outputs.PreReleaseLabel }} + MAJORMINORPATCH: ${{ needs.calc-version.outputs.MajorMinorPatch }} steps: - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 id: download - name: List artifacts @@ -586,7 +583,7 @@ jobs: - name: Install grp run: dotnet tool install gpr -g - - uses: actions/setup-dotnet@v3 + - uses: actions/setup-dotnet@v4 env: NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} with: @@ -607,12 +604,12 @@ jobs: msg: ${{ github.repository }} - name: Install GitReleaseManager - uses: gittools/actions/gitreleasemanager/setup@v0.10.2 + uses: gittools/actions/gitreleasemanager/setup@v3.1.11 with: - versionSpec: "0.13.x" + versionSpec: '0.18.x' - name: Create release with GitReleaseManager - uses: gittools/actions/gitreleasemanager/create@v0.10.2 + uses: gittools/actions/gitreleasemanager/create@v3.1.11 with: token: ${{ secrets.GITHUB_TOKEN }} owner: ${{ steps.repo.outputs._0 }} @@ -620,21 +617,21 @@ jobs: milestone: ${{ env.MAJORMINORPATCH }} name: "Release v${{ env.MAJORMINORPATCH }}" assets: | - artifacts/mig-cli-${{ env.SEMVER }}-linux-x64.zip - artifacts/mig-cli-${{ env.SEMVER }}-win-x64.zip - artifacts/mig-docs-${{ env.SEMVER }}.zip + artifacts-cli/mig-cli-${{ env.SEMVER }}-linux-x64.zip + artifacts-cli/mig-cli-${{ env.SEMVER }}-win-x64.zip + artifacts-docs/mig-docs-${{ env.SEMVER }}.zip - name: Publish release with GitReleaseManager - uses: gittools/actions/gitreleasemanager/publish@v0.10.2 + uses: gittools/actions/gitreleasemanager/publish@v3.1.11 if: ${{ contains(github.ref, 'refs/heads/main') }} with: token: ${{ secrets.GITHUB_TOKEN }} owner: ${{ steps.repo.outputs._0 }} repository: ${{ steps.repo.outputs._1 }} - tagName: ${{ env.MAJORMINORPATCH }} + milestone: ${{ env.MAJORMINORPATCH }} - name: Close release with GitReleaseManager - uses: gittools/actions/gitreleasemanager/close@v0.10.2 + uses: gittools/actions/gitreleasemanager/close@v3.1.11 if: ${{ contains(github.ref, 'refs/heads/main') }} with: token: ${{ secrets.GITHUB_TOKEN }} @@ -646,7 +643,7 @@ jobs: if: ${{ contains(github.ref, 'refs/heads/main') }} run: | mkdir userguide - unzip artifacts/mig-docs-${{ env.SEMVER }}.zip -d userguide/ + unzip artifacts-docs/mig-docs-${{ env.SEMVER }}.zip -d userguide/ ls -lR userguide/ - name: Deploy Docs diff --git a/.licenserc.yaml b/.licenserc.yaml index 0cce288a..6d7eafe2 100644 --- a/.licenserc.yaml +++ b/.licenserc.yaml @@ -16,7 +16,8 @@ header: license: spdx-id: Apache-2.0 copyright-owner: MONAI Consortium - + copyright-year: 2022-2025 + paths-ignore: - 'LICENSE' - '.github/**/*.md' diff --git a/Dockerfile b/Dockerfile index a92d87df..4f8a40e9 100755 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM mcr.microsoft.com/dotnet/sdk:8.0-jammy as build +FROM mcr.microsoft.com/dotnet/sdk:8.0-jammy AS build # Install the tools RUN dotnet tool install --tool-path /tools dotnet-trace @@ -36,7 +36,7 @@ ENV DEBIAN_FRONTEND=noninteractive RUN apt-get clean \ && apt-get update \ && apt-get install -y --no-install-recommends curl \ - && apt-get install -y libc6-dev=2.35-0ubuntu3.8 \ + && apt-get install -y libc6-dev=2.35-0ubuntu3.9 \ && rm -rf /var/lib/apt/lists # this is a workaround for Mongo encryption library WORKDIR /opt/monai/ig diff --git a/doc/dependency_decisions.yml b/doc/dependency_decisions.yml index bdfc6e84..87f2acc5 100755 --- a/doc/dependency_decisions.yml +++ b/doc/dependency_decisions.yml @@ -2,7 +2,7 @@ - - :approve - AWSSDK.Core - :versions: - - 3.7.304.15 + - 3.7.402.25 :when: 2022-08-29T18:11:12.923Z :who: mocsharp :why: Apache-2.0 (https://github.com/aws/aws-sdk-net/raw/master/License.txt) @@ -16,21 +16,21 @@ - - :approve - AWSSDK.SecurityToken - :versions: - - 3.7.300.105 + - 3.7.401.68 :when: 2022-08-16T18:11:13.781Z :who: mocsharp :why: Apache-2.0 (https://github.com/aws/aws-sdk-net/raw/master/License.txt) - - :approve - Ardalis.GuardClauses - :versions: - - 4.5.0 + - 4.6.0 :when: 2022-08-16T21:39:30.077Z :who: mocsharp :why: MIT (https://github.com/ardalis/GuardClauses.Analyzers/raw/master/LICENSE) - - :approve - AspNetCore.HealthChecks.MongoDb - :versions: - - 8.0.1 + - 8.1.0 :when: 2022-12-08T23:37:56.206Z :who: mocsharp :why: Apache-2.0 (https://github.com/Xabaril/AspNetCore.Diagnostics.HealthChecks/raw/master/LICENSE) @@ -40,7 +40,7 @@ - 1.5.0 :when: 2022-08-16T23:05:29.793Z :who: mocsharp - :why: Apache-2.0 (https://raw.githubusercontent.com/SpecFlowOSS/BoDi/master/LICENSE.txt) + :why: Apache-2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt) - - :approve - Castle.Core - :versions: @@ -51,7 +51,7 @@ - - :approve - CommunityToolkit.HighPerformance - :versions: - - 8.2.2 + - 8.3.2 :when: 2023-08-04T00:02:30.206Z :who: mocsharp :why: MIT (https://raw.githubusercontent.com/CommunityToolkit/dotnet/main/License.md) @@ -100,10 +100,10 @@ - - :approve - FluentAssertions - :versions: - - 6.12.0 + - 6.12.2 :when: 2022-08-16T23:05:33.753Z :who: mocsharp - :why: Apache-2.0 (https://github.com/fluentassertions/fluentassertions/raw/develop/LICENSE) + :why: Apache-2.0 (https://raw.githubusercontent.com/fluentassertions/fluentassertions/refs/tags/6.12.2/LICENSE) - - :approve - Gherkin - :versions: @@ -114,7 +114,7 @@ - - :approve - HL7-dotnetcore - :versions: - - 2.36.0 + - 2.39.1 :when: 2022-08-16T23:05:35.066Z :who: mocsharp :why: MIT (https://github.com/Efferent-Health/HL7-dotnetcore/raw/master/LICENSE.txt) @@ -135,7 +135,7 @@ - - :approve - Microsoft.AspNetCore.Authentication.JwtBearer - :versions: - - 8.0.0 + - 8.0.14 :when: 2022-10-14T23:36:49.751Z :who: mocsharp :why: MIT (https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) @@ -149,7 +149,7 @@ - - :approve - Microsoft.Bcl.AsyncInterfaces - :versions: - - 6.0.0 + - 8.0.0 :when: 2022-08-16T23:05:46.589Z :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -159,7 +159,7 @@ - 1.1.1 :when: 2023-08-04T00:02:30.206Z :who: mocsharp - :why: MIT (https://licenses.nuget.org/MIT) + :why: MIT (https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) - - :approve - Microsoft.CSharp - :versions: @@ -205,80 +205,80 @@ - - :approve - Microsoft.CodeCoverage - :versions: - - 17.10.0 + - 17.13.0 :when: 2023-08-16T16:49:26.950Z :who: woodheadio :why: MIT (https://github.com/microsoft/vstest/raw/v17.4.1/LICENSE) - - :approve - Microsoft.Data.Sqlite.Core - :versions: - - 8.0.6 + - 8.0.14 :when: 2022-08-16T23:05:49.698Z :who: mocsharp - :why: MIT (https://raw.githubusercontent.com/dotnet/efcore/release/6.0/LICENSE.txt) + :why: MIT (https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) - - :approve - Microsoft.EntityFrameworkCore - :versions: - - 8.0.6 + - 8.0.14 :when: 2022-08-16T23:05:50.137Z :who: mocsharp - :why: MIT (https://raw.githubusercontent.com/dotnet/efcore/release/6.0/LICENSE.txt) + :why: MIT (https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) - - :approve - Microsoft.EntityFrameworkCore.Abstractions - :versions: - - 8.0.6 + - 8.0.14 :when: 2022-08-16T23:05:51.008Z :who: mocsharp - :why: MIT (https://raw.githubusercontent.com/dotnet/efcore/release/6.0/LICENSE.txt) + :why: MIT (https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) - - :approve - Microsoft.EntityFrameworkCore.Analyzers - :versions: - - 8.0.6 + - 8.0.14 :when: 2022-08-16T23:05:51.445Z :who: mocsharp - :why: MIT (https://raw.githubusercontent.com/dotnet/efcore/release/6.0/LICENSE.txt) + :why: MIT (https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) - - :approve - Microsoft.EntityFrameworkCore.Design - :versions: - - 8.0.6 + - 8.0.14 :when: 2022-08-16T23:05:51.922Z :who: mocsharp - :why: MIT (https://raw.githubusercontent.com/dotnet/efcore/release/6.0/LICENSE.txt) + :why: MIT (https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) - - :approve - Microsoft.EntityFrameworkCore.InMemory - :versions: - - 8.0.6 + - 8.0.14 :when: 2022-08-16T23:05:52.375Z :who: mocsharp - :why: MIT (https://raw.githubusercontent.com/dotnet/efcore/release/6.0/LICENSE.txt) + :why: MIT (https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) - - :approve - Microsoft.EntityFrameworkCore.Relational - :versions: - - 8.0.6 + - 8.0.14 :when: 2022-08-16T23:05:52.828Z :who: mocsharp - :why: MIT (https://raw.githubusercontent.com/dotnet/efcore/release/6.0/LICENSE.txt) + :why: MIT (https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) - - :approve - Microsoft.EntityFrameworkCore.Tools - :versions: - - 8.0.6 + - 8.0.14 :when: 2022-08-16T23:05:52.828Z :who: ndsouth - :why: MIT (https://raw.githubusercontent.com/dotnet/efcore/release/6.0/LICENSE.txt) + :why: MIT (https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) - - :approve - Microsoft.EntityFrameworkCore.Sqlite - :versions: - - 8.0.6 + - 8.0.14 :when: 2022-08-16T23:05:53.270Z :who: mocsharp - :why: MIT (https://raw.githubusercontent.com/dotnet/efcore/release/6.0/LICENSE.txt) + :why: MIT (https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) - - :approve - Microsoft.EntityFrameworkCore.Sqlite.Core - :versions: - - 8.0.6 + - 8.0.14 :when: 2022-08-16T23:05:53.706Z :who: mocsharp - :why: MIT (https://raw.githubusercontent.com/dotnet/efcore/release/6.0/LICENSE.txt) + :why: MIT (https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) - - :approve - Microsoft.Extensions.ApiDescription.Server - :versions: @@ -297,7 +297,7 @@ - - :approve - Microsoft.Extensions.Caching.Memory - :versions: - - 8.0.0 + - 8.0.1 :when: 2022-08-16T23:05:55.084Z :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -322,7 +322,7 @@ - :versions: - 6.0.0 - 8.0.0 - - 8.0.1 + - 8.0.2 :when: 2022-08-16T23:05:56.869Z :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -345,7 +345,7 @@ - Microsoft.Extensions.Configuration.FileExtensions - :versions: - 6.0.0 - - 8.0.0 + - 8.0.1 :when: 2022-08-16T23:05:58.646Z :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -353,7 +353,7 @@ - Microsoft.Extensions.Configuration.Json - :versions: - 6.0.0 - - 8.0.0 + - 8.0.1 :when: 2022-08-16T23:05:59.140Z :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -370,6 +370,7 @@ - :versions: - 6.0.1 - 8.0.0 + - 8.0.1 :when: 2022-08-16T23:06:00.904Z :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -377,14 +378,14 @@ - Microsoft.Extensions.DependencyInjection.Abstractions - :versions: - 6.0.0 - - 8.0.1 + - 8.0.2 :when: 2022-08-16T21:39:41.552Z :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) - - :approve - Microsoft.Extensions.DependencyModel - :versions: - - 8.0.0 + - 8.0.2 :when: 2022-08-16T23:06:02.270Z :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -398,28 +399,28 @@ - - :approve - Microsoft.Extensions.Diagnostics.Abstractions - :versions: - - 8.0.0 + - 8.0.1 :when: 2023-08-16T16:49:26.950Z :who: woodheadio :why: MIT (https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) - - :approve - Microsoft.Extensions.Diagnostics.HealthChecks - :versions: - - 8.0.6 + - 8.0.14 :when: 2023-08-16T16:49:26.950Z :who: woodheadio :why: MIT (https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) - - :approve - Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - :versions: - - 8.0.6 + - 8.0.14 :when: 2023-08-16T16:49:26.950Z :who: woodheadio :why: MIT (https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) - - :approve - Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore - :versions: - - 8.0.6 + - 8.0.14 :when: 2022-08-29T18:11:22.090Z :who: mocsharp :why: MIT (https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) @@ -443,7 +444,7 @@ - Microsoft.Extensions.Hosting.Abstractions - :versions: - 6.0.0 - - 8.0.0 + - 8.0.1 :when: 2022-08-16T21:39:43.643Z :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -468,6 +469,7 @@ - :versions: - 6.0.0 - 8.0.0 + - 8.0.1 :when: 2022-08-16T21:39:44.471Z :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -475,7 +477,7 @@ - Microsoft.Extensions.Logging.Abstractions - :versions: - 6.0.0 - - 8.0.1 + - 8.0.3 :when: 2022-08-16T21:39:44.471Z :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -483,7 +485,7 @@ - Microsoft.Extensions.Logging.Configuration - :versions: - 6.0.0 - - 8.0.0 + - 8.0.1 :when: 2022-08-16T23:06:07.178Z :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -541,61 +543,56 @@ - - :approve - Microsoft.IdentityModel.Abstractions - :versions: - - 7.0.3 + - 7.1.2 :when: 2022-10-14T23:37:14.398Z :who: mocsharp :why: MIT (https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) - - :approve - Microsoft.IdentityModel.JsonWebTokens - :versions: - - 7.0.3 + - 7.1.2 :when: 2022-10-14T23:37:14.398Z :who: mocsharp :why: MIT (https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) - - :approve - Microsoft.IdentityModel.Logging - :versions: - - 7.0.3 + - 7.1.2 :when: 2022-10-14T23:37:15.196Z :who: mocsharp :why: MIT (https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) - - :approve - Microsoft.IdentityModel.Protocols - :versions: - - 7.0.3 + - 7.1.2 :when: 2022-10-14T23:37:16.007Z :who: mocsharp :why: MIT (https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) - - :approve - Microsoft.IdentityModel.Protocols.OpenIdConnect - :versions: - - 7.0.3 + - 7.1.2 :when: 2022-10-14T23:37:16.403Z :who: mocsharp :why: MIT (https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) - - :approve - Microsoft.IdentityModel.Tokens - :versions: - - 7.0.3 + - 7.1.2 :when: 2022-10-14T23:37:16.793Z :who: mocsharp :why: MIT (https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) - - :approve - Microsoft.NET.ILLink.Tasks - :versions: - - 8.0.0 - - 8.0.1 - - 8.0.2 - - 8.0.3 - - 8.0.6 - - 8.0.7 + - 8.0.14 :when: 2022-10-14T23:37:16.793Z :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) - - :approve - Microsoft.NET.Test.Sdk - :versions: - - 17.10.0 + - 17.13.0 :when: 2023-08-16T16:49:26.950Z :who: woodheadio :why: MIT (https://github.com/microsoft/vstest/raw/v17.4.1/LICENSE) @@ -609,7 +606,7 @@ - - :approve - Microsoft.OpenApi - :versions: - - 1.6.14 + - 1.6.23 :when: 2022-08-16T23:06:15.708Z :who: mocsharp :why: MIT ( https://raw.githubusercontent.com/Microsoft/OpenAPI.NET/master/LICENSE) @@ -637,14 +634,14 @@ - - :approve - Microsoft.TestPlatform.ObjectModel - :versions: - - 17.10.0 + - 17.13.0 :when: 2023-08-16T16:49:26.950Z :who: woodheadio :why: MIT (https://github.com/microsoft/vstest/raw/v17.4.1/LICENSE) - - :approve - Microsoft.TestPlatform.TestHost - :versions: - - 17.10.0 + - 17.13.0 :when: 2023-08-16T16:49:26.950Z :who: woodheadio :why: MIT (https://github.com/microsoft/vstest/raw/v17.4.1/LICENSE) @@ -665,56 +662,56 @@ - - :approve - Monai.Deploy.Messaging - :versions: - - 2.0.3 + - 2.0.4 :when: 2023-10-13T18:06:21.511Z :who: neilsouth :why: Apache-2.0 (https://github.com/Project-MONAI/monai-deploy-messaging/raw/main/LICENSE) - - :approve - Monai.Deploy.Messaging.RabbitMQ - :versions: - - 2.0.3 + - 2.0.4 :when: 2023-10-13T18:06:21.511Z :who: neilsouth :why: Apache-2.0 (https://github.com/Project-MONAI/monai-deploy-messaging/raw/main/LICENSE) - - :approve - Monai.Deploy.Storage - :versions: - - 1.0.1 + - 1.0.2 :when: 2022-08-16T23:06:21.988Z :who: mocsharp :why: Apache-2.0 (https://github.com/Project-MONAI/monai-deploy-storage/raw/main/LICENSE) - - :approve - Monai.Deploy.Storage.MinIO - :versions: - - 1.0.1 + - 1.0.2 :when: 2022-08-16T23:06:22.426Z :who: mocsharp :why: Apache-2.0 (https://github.com/Project-MONAI/monai-deploy-storage/raw/main/LICENSE) - - :approve - Monai.Deploy.Storage.S3Policy - :versions: - - 1.0.1 + - 1.0.2 :when: 2022-08-16T23:06:22.881Z :who: mocsharp :why: Apache-2.0 (https://github.com/Project-MONAI/monai-deploy-storage/raw/main/LICENSE) - - :approve - Monai.Deploy.Security - :versions: - - 1.0.0 + - 1.0.1 :when: 2022-08-16T23:06:21.051Z :who: mocsharp :why: Apache-2.0 (https://github.com/Project-MONAI/monai-deploy-security/raw/develop/LICENSE) - - :approve - MongoDB.Bson - :versions: - - 2.25.0 + - 2.30.0 :when: 2022-11-16T23:38:53.891Z :who: mocsharp :why: Apache-2.0 (https://raw.githubusercontent.com/mongodb/mongo-csharp-driver/master/LICENSE.md) - - :approve - MongoDB.Driver - :versions: - - 2.25.0 + - 2.30.0 :when: 2022-11-16T23:38:54.213Z :who: mocsharp :why: Apache-2.0 (https://raw.githubusercontent.com/mongodb/mongo-csharp-driver/master/LICENSE.md) @@ -729,14 +726,14 @@ - - :approve - MongoDB.Driver.Core - :versions: - - 2.25.0 + - 2.30.0 :when: 2022-11-16T23:38:54.553Z :who: mocsharp :why: Apache-2.0 (https://raw.githubusercontent.com/mongodb/mongo-csharp-driver/master/LICENSE.md) - - :approve - MongoDB.Libmongocrypt - :versions: - - 1.8.2 + - 1.12.0 :when: 2022-11-16T23:38:54.863Z :who: mocsharp :why: Apache-2.0 (https://raw.githubusercontent.com/mongodb/mongo-csharp-driver/master/LICENSE.md) @@ -757,21 +754,21 @@ - - :approve - NLog - :versions: - - 5.3.2 + - 5.4.0 :when: 2022-10-12T03:14:06.538Z :who: mocsharp :why: BSD 3-Clause License (https://github.com/NLog/NLog/raw/dev/LICENSE.txt) - - :approve - NLog.Extensions.Logging - :versions: - - 5.3.11 + - 5.4.0 :when: 2022-10-12T03:14:06.964Z :who: mocsharp :why: BSD 2-Clause Simplified License (https://github.com/NLog/NLog.Extensions.Logging/raw/master/LICENSE) - - :approve - NLog.Web.AspNetCore - :versions: - - 5.3.11 + - 5.4.0 :when: 2022-10-12T03:14:07.396Z :who: mocsharp :why: BSD 3-Clause License (https://github.com/NLog/NLog.Web/raw/master/LICENSE) @@ -838,60 +835,60 @@ - 3.9.74 :when: 2022-08-16T23:06:31.491Z :who: mocsharp - :why: New BSD License (https://github.com/SpecFlowOSS/SpecFlow/raw/master/LICENSE.txt) + :why: New BSD License (https://spdx.org/licenses/BSD-3-Clause.html) - - :approve - SpecFlow.Internal.Json - :versions: - 1.0.8 :when: 2022-08-16T23:06:31.986Z :who: mocsharp - :why: MIT (https://github.com/SpecFlowOSS/SpecFlow.Internal.Json/raw/master/LICENSE) + :why: MIT (https://spdx.org/licenses/BSD-3-Clause.html) - - :approve - SpecFlow.Plus.LivingDocPlugin - :versions: - 3.9.57 :when: 2022-08-16T23:06:32.460Z :who: mocsharp - :why: New BSD License (https://github.com/SpecFlowOSS/SpecFlow/raw/master/LICENSE.txt) + :why: New BSD License (https://spdx.org/licenses/BSD-3-Clause.html) - - :approve - SpecFlow.Tools.MsBuild.Generation - :versions: - 3.9.74 :when: 2022-08-16T23:06:32.914Z :who: mocsharp - :why: New BSD License (https://github.com/SpecFlowOSS/SpecFlow/raw/master/LICENSE.txt) + :why: New BSD License (https://spdx.org/licenses/BSD-3-Clause.html) - - :approve - SpecFlow.xUnit - :versions: - 3.9.74 :when: 2022-08-16T23:06:33.372Z :who: mocsharp - :why: New BSD License (https://github.com/SpecFlowOSS/SpecFlow/raw/master/LICENSE.txt) + :why: New BSD License (https://spdx.org/licenses/BSD-3-Clause.html) - - :approve - Swashbuckle.AspNetCore - :versions: - - 6.6.2 + - 8.0.0 :when: 2022-08-16T23:06:33.817Z :who: mocsharp :why: MIT (https://github.com/domaindrivendev/Swashbuckle.AspNetCore/raw/master/LICENSE) - - :approve - Swashbuckle.AspNetCore.Swagger - :versions: - - 6.6.2 + - 8.0.0 :when: 2022-08-16T23:06:34.264Z :who: mocsharp :why: MIT (https://github.com/domaindrivendev/Swashbuckle.AspNetCore/raw/master/LICENSE) - - :approve - Swashbuckle.AspNetCore.SwaggerGen - :versions: - - 6.6.2 + - 8.0.0 :when: 2022-08-16T23:06:34.716Z :who: mocsharp :why: MIT (https://github.com/domaindrivendev/Swashbuckle.AspNetCore/raw/master/LICENSE) - - :approve - Swashbuckle.AspNetCore.SwaggerUI - :versions: - - 6.6.2 + - 8.0.0 :when: 2022-08-16T23:06:35.164Z :who: mocsharp :why: MIT (https://github.com/domaindrivendev/Swashbuckle.AspNetCore/raw/master/LICENSE) @@ -905,19 +902,19 @@ - - :approve - Polly - :versions: - - 8.2.0 - 8.4.0 + - 8.5.2 :when: 2022-11-09T18:57:32.294Z :who: mocsharp - :why: MIT ( https://licenses.nuget.org/MIT) + :why: MIT ( https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) - - :approve - Polly.Core - :versions: - - 8.2.0 - 8.4.0 + - 8.5.2 :when: 2022-11-09T18:57:32.294Z :who: mocsharp - :why: MIT ( https://licenses.nuget.org/MIT) + :why: MIT ( https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) - - :approve - RabbitMQ.Client - :versions: @@ -1071,14 +1068,14 @@ - - :approve - System.IO.Abstractions - :versions: - - 21.0.2 + - 21.3.1 :when: 2022-12-14T12:28:00.728Z :who: samrooke :why: MIT (https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) - - :approve - System.IO.Abstractions.TestingHelpers - :versions: - - 21.0.2 + - 21.3.1 :when: 2022-12-14T12:28:00.728Z :who: samrooke :why: MIT (https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) @@ -1128,7 +1125,7 @@ - - :approve - System.IdentityModel.Tokens.Jwt - :versions: - - 7.0.3 + - 7.1.2 :when: 2022-10-14T23:37:56.206Z :who: mocsharp :why: MIT (https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) @@ -1263,7 +1260,7 @@ - - :approve - System.Text.Encoding.CodePages - :versions: - - 6.0.0 + - 6.0.1 :when: 2022-08-16T23:07:17.991Z :who: mocsharp :why: MIT (https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) @@ -1278,8 +1275,7 @@ - - :approve - System.Text.Json - :versions: - - 6.0.9 - - 8.0.0 + - 8.0.5 :when: 2022-08-16T23:07:20.787Z :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -1493,21 +1489,21 @@ - - :approve - TestableIO.System.IO.Abstractions - :versions: - - 21.0.2 + - 21.3.1 :when: 2022-08-16T21:40:21.430Z :who: mocsharp :why: MIT (https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) - - :approve - TestableIO.System.IO.Abstractions.TestingHelpers - :versions: - - 21.0.2 + - 21.3.1 :when: 2022-08-16T21:40:21.430Z :who: mocsharp :why: MIT (https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) - - :approve - TestableIO.System.IO.Abstractions.Wrappers - :versions: - - 21.0.2 + - 21.3.1 :when: 2022-08-16T21:40:21.430Z :who: mocsharp :why: MIT (https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) @@ -1521,14 +1517,14 @@ - - :approve - coverlet.collector - :versions: - - 6.0.2 + - 6.0.4 :when: 2022-08-16T21:40:21.855Z :who: mocsharp :why: MIT (https://github.com/coverlet-coverage/coverlet/raw/master/LICENSE) - - :approve - fo-dicom - :versions: - - 5.1.2 + - 5.2.1 :when: 2022-08-16T23:07:29.574Z :who: mocsharp :why: Microsoft Public License (https://github.com/fo-dicom/fo-dicom/raw/development/License.txt) @@ -1718,7 +1714,7 @@ - 2.8.1 :when: 2022-08-16T21:40:32.294Z :who: mocsharp - :why: MIT ( https://licenses.nuget.org/MIT) + :why: MIT ( https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) - - :approve - Xunit.SkippableFact - :versions: diff --git a/docs/changelog.md b/docs/changelog.md index 1ad6348f..66c62647 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -17,6 +17,11 @@ # Changelog +## 0.5.1 +[GitHub Milestone 0.5.1](https://github.com/Project-MONAI/monai-deploy-informatics-gateway/milestone/30) + +- gh-521 Address vulnerabilities in .NET (CVE-2024-38229, CVE-2024-35264) + ## 0.5.0 [GitHub Milestone 0.5.0](https://github.com/Project-MONAI/monai-deploy-informatics-gateway/milestone/4) diff --git a/docs/compliance/third-party-licenses.md b/docs/compliance/third-party-licenses.md index 04d8e859..5a854b31 100644 --- a/docs/compliance/third-party-licenses.md +++ b/docs/compliance/third-party-licenses.md @@ -60,15 +60,14 @@ SOFTWARE.
-AWSSDK.Core 3.7.304.15 +AWSSDK.Core 3.7.402.25 ## AWSSDK.Core -- Version: 3.7.304.15 +- Version: 3.7.402.25 - Authors: Amazon Web Services -- Owners: Amazon Web Services - Project URL: https://github.com/aws/aws-sdk-net/ -- Source: [NuGet](https://www.nuget.org/packages/AWSSDK.Core/3.7.304.15) +- Source: [NuGet](https://www.nuget.org/packages/AWSSDK.Core/3.7.402.25) - License: [Apache-2.0](https://github.com/aws/aws-sdk-net/raw/master/License.txt) @@ -206,15 +205,14 @@ END OF TERMS AND CONDITIONS
-AWSSDK.SecurityToken 3.7.300.105 +AWSSDK.SecurityToken 3.7.401.68 ## AWSSDK.SecurityToken -- Version: 3.7.300.105 +- Version: 3.7.401.68 - Authors: Amazon Web Services -- Owners: Amazon Web Services - Project URL: https://github.com/aws/aws-sdk-net/ -- Source: [NuGet](https://www.nuget.org/packages/AWSSDK.SecurityToken/3.7.300.105) +- Source: [NuGet](https://www.nuget.org/packages/AWSSDK.SecurityToken/3.7.401.68) - License: [Apache-2.0](https://github.com/aws/aws-sdk-net/raw/master/License.txt) @@ -279,14 +277,14 @@ END OF TERMS AND CONDITIONS
-Ardalis.GuardClauses 4.5.0 +Ardalis.GuardClauses 4.6.0 ## Ardalis.GuardClauses -- Version: 4.5.0 +- Version: 4.6.0 - Authors: Steve Smith (@ardalis) - Project URL: https://github.com/ardalis/guardclauses -- Source: [NuGet](https://www.nuget.org/packages/Ardalis.GuardClauses/4.5.0) +- Source: [NuGet](https://www.nuget.org/packages/Ardalis.GuardClauses/4.6.0) - License: [MIT](https://github.com/ardalis/GuardClauses.Analyzers/raw/master/LICENSE) @@ -318,14 +316,14 @@ SOFTWARE.
-AspNetCore.HealthChecks.MongoDb 8.0.1 +AspNetCore.HealthChecks.MongoDb 8.1.0 ## AspNetCore.HealthChecks.MongoDb -- Version: 8.0.1 +- Version: 8.1.0 - Authors: Xabaril Contributors - Project URL: https://github.com/Xabaril/AspNetCore.Diagnostics.HealthChecks -- Source: [NuGet](https://www.nuget.org/packages/AspNetCore.HealthChecks.MongoDb/8.0.1) +- Source: [NuGet](https://www.nuget.org/packages/AspNetCore.HealthChecks.MongoDb/8.1.0) - License: [Apache-2.0](https://github.com/Xabaril/AspNetCore.Diagnostics.HealthChecks/raw/master/LICENSE) @@ -546,7 +544,7 @@ Apache License - Owners: Gaspar Nagy - Project URL: https://github.com/gasparnagy/BoDi - Source: [NuGet](https://www.nuget.org/packages/BoDi/1.5.0) -- License: [Apache-2.0](https://raw.githubusercontent.com/SpecFlowOSS/BoDi/master/LICENSE.txt) +- License: [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) ``` @@ -727,7 +725,18 @@ Apache License END OF TERMS AND CONDITIONS - Copyright 2014 Gaspar Nagy (http://gasparnagy.com) + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -777,14 +786,14 @@ limitations under the License.
-CommunityToolkit.HighPerformance 8.2.2 +CommunityToolkit.HighPerformance 8.3.2 ## CommunityToolkit.HighPerformance -- Version: 8.2.2 +- Version: 8.3.2 - Authors: Microsoft - Project URL: https://github.com/CommunityToolkit/dotnet -- Source: [NuGet](https://www.nuget.org/packages/CommunityToolkit.HighPerformance/8.2.2) +- Source: [NuGet](https://www.nuget.org/packages/CommunityToolkit.HighPerformance/8.3.2) - License: [MIT](https://raw.githubusercontent.com/CommunityToolkit/dotnet/main/License.md) @@ -1222,15 +1231,15 @@ SOFTWARE.
-FluentAssertions 6.12.0 +FluentAssertions 6.12.2 ## FluentAssertions -- Version: 6.12.0 +- Version: 6.12.2 - Authors: Dennis Doomen,Jonas Nyrup - Project URL: https://www.fluentassertions.com/ -- Source: [NuGet](https://www.nuget.org/packages/FluentAssertions/6.12.0) -- License: [Apache-2.0](https://github.com/fluentassertions/fluentassertions/raw/develop/LICENSE) +- Source: [NuGet](https://www.nuget.org/packages/FluentAssertions/6.12.2) +- License: [Apache-2.0](https://raw.githubusercontent.com/fluentassertions/fluentassertions/refs/tags/6.12.2/LICENSE) ``` @@ -1445,7 +1454,7 @@ third-party archives. ``` MIT License -Copyright (c) M.P. Korstanje +Copyright (c) 2017 Cucumber Ltd, Gaspar Nagy, Björn Rasmusson, Peter Sergeant, and contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -1470,14 +1479,14 @@ SOFTWARE.
-HL7-dotnetcore 2.36.0 +HL7-dotnetcore 2.39.1 ## HL7-dotnetcore -- Version: 2.36.0 +- Version: 2.39.1 - Authors: HL7-dotnetcore - Project URL: https://github.com/Efferent-Health/HL7-dotnetcore -- Source: [NuGet](https://www.nuget.org/packages/HL7-dotnetcore/2.36.0) +- Source: [NuGet](https://www.nuget.org/packages/HL7-dotnetcore/2.39.1) - License: [MIT](https://github.com/Efferent-Health/HL7-dotnetcore/raw/master/LICENSE.txt) @@ -1601,14 +1610,14 @@ SOFTWARE.
-Microsoft.AspNetCore.Authentication.JwtBearer 8.0.0 +Microsoft.AspNetCore.Authentication.JwtBearer 8.0.14 ## Microsoft.AspNetCore.Authentication.JwtBearer -- Version: 8.0.0 +- Version: 8.0.14 - Authors: Microsoft - Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.Authentication.JwtBearer/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.Authentication.JwtBearer/8.0.14) - License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) @@ -1683,14 +1692,14 @@ SOFTWARE.
-Microsoft.Bcl.AsyncInterfaces 6.0.0 +Microsoft.Bcl.AsyncInterfaces 8.0.0 ## Microsoft.Bcl.AsyncInterfaces -- Version: 6.0.0 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -1733,47 +1742,33 @@ SOFTWARE. - Owners: microsoft,dotnetframework - Project URL: https://github.com/dotnet/corefx - Source: [NuGet](https://www.nuget.org/packages/Microsoft.Bcl.HashCode/1.1.1) -- License: [MIT](https://licenses.nuget.org/MIT) +- License: [MIT](https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) ``` -'MIT' reference - - - -MIT License -SPDX identifier -MIT -License text - -MIT License - +The MIT License (MIT) -Copyright (c) - +Copyright (c) .NET Foundation and Contributors -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and - associated documentation files (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: -The above copyright notice and this permission notice - (including the next paragraph) - shall be included in all copies or substantial - portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT - LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN - NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -SPDX web page +All rights reserved. -https://spdx.org/licenses/MIT.html +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -Notice -This license content is provided by the SPDX project. For more information about licenses.nuget.org, see our documentation. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -Data pulled from spdx/license-list-data on February 9, 2023. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. ```
@@ -2028,14 +2023,14 @@ SOFTWARE.
-Microsoft.CodeCoverage 17.10.0 +Microsoft.CodeCoverage 17.13.0 ## Microsoft.CodeCoverage -- Version: 17.10.0 +- Version: 17.13.0 - Authors: Microsoft - Project URL: https://github.com/microsoft/vstest -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.CodeCoverage/17.10.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.CodeCoverage/17.13.0) - License: [MIT](https://github.com/microsoft/vstest/raw/v17.4.1/LICENSE) @@ -2065,15 +2060,15 @@ SOFTWARE.
-Microsoft.Data.Sqlite.Core 8.0.6 +Microsoft.Data.Sqlite.Core 8.0.14 ## Microsoft.Data.Sqlite.Core -- Version: 8.0.6 +- Version: 8.0.14 - Authors: Microsoft - Project URL: https://docs.microsoft.com/dotnet/standard/data/sqlite/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Data.Sqlite.Core/8.0.6) -- License: [MIT](https://raw.githubusercontent.com/dotnet/efcore/release/6.0/LICENSE.txt) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Data.Sqlite.Core/8.0.14) +- License: [MIT](https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) ``` @@ -2106,15 +2101,15 @@ SOFTWARE.
-Microsoft.EntityFrameworkCore 8.0.6 +Microsoft.EntityFrameworkCore 8.0.14 ## Microsoft.EntityFrameworkCore -- Version: 8.0.6 +- Version: 8.0.14 - Authors: Microsoft - Project URL: https://docs.microsoft.com/ef/core/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/8.0.6) -- License: [MIT](https://raw.githubusercontent.com/dotnet/efcore/release/6.0/LICENSE.txt) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/8.0.14) +- License: [MIT](https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) ``` @@ -2147,15 +2142,15 @@ SOFTWARE.
-Microsoft.EntityFrameworkCore.Abstractions 8.0.6 +Microsoft.EntityFrameworkCore.Abstractions 8.0.14 ## Microsoft.EntityFrameworkCore.Abstractions -- Version: 8.0.6 +- Version: 8.0.14 - Authors: Microsoft - Project URL: https://docs.microsoft.com/ef/core/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.Abstractions/8.0.6) -- License: [MIT](https://raw.githubusercontent.com/dotnet/efcore/release/6.0/LICENSE.txt) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.Abstractions/8.0.14) +- License: [MIT](https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) ``` @@ -2188,15 +2183,15 @@ SOFTWARE.
-Microsoft.EntityFrameworkCore.Analyzers 8.0.6 +Microsoft.EntityFrameworkCore.Analyzers 8.0.14 ## Microsoft.EntityFrameworkCore.Analyzers -- Version: 8.0.6 +- Version: 8.0.14 - Authors: Microsoft - Project URL: https://docs.microsoft.com/ef/core/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.Analyzers/8.0.6) -- License: [MIT](https://raw.githubusercontent.com/dotnet/efcore/release/6.0/LICENSE.txt) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.Analyzers/8.0.14) +- License: [MIT](https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) ``` @@ -2229,15 +2224,15 @@ SOFTWARE.
-Microsoft.EntityFrameworkCore.Design 8.0.6 +Microsoft.EntityFrameworkCore.Design 8.0.14 ## Microsoft.EntityFrameworkCore.Design -- Version: 8.0.6 +- Version: 8.0.14 - Authors: Microsoft - Project URL: https://docs.microsoft.com/ef/core/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.Design/8.0.6) -- License: [MIT](https://raw.githubusercontent.com/dotnet/efcore/release/6.0/LICENSE.txt) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.Design/8.0.14) +- License: [MIT](https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) ``` @@ -2270,15 +2265,15 @@ SOFTWARE.
-Microsoft.EntityFrameworkCore.InMemory 8.0.6 +Microsoft.EntityFrameworkCore.InMemory 8.0.14 ## Microsoft.EntityFrameworkCore.InMemory -- Version: 8.0.6 +- Version: 8.0.14 - Authors: Microsoft - Project URL: https://docs.microsoft.com/ef/core/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.InMemory/8.0.6) -- License: [MIT](https://raw.githubusercontent.com/dotnet/efcore/release/6.0/LICENSE.txt) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.InMemory/8.0.14) +- License: [MIT](https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) ``` @@ -2311,15 +2306,15 @@ SOFTWARE.
-Microsoft.EntityFrameworkCore.Relational 8.0.6 +Microsoft.EntityFrameworkCore.Relational 8.0.14 ## Microsoft.EntityFrameworkCore.Relational -- Version: 8.0.6 +- Version: 8.0.14 - Authors: Microsoft - Project URL: https://docs.microsoft.com/ef/core/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.Relational/8.0.6) -- License: [MIT](https://raw.githubusercontent.com/dotnet/efcore/release/6.0/LICENSE.txt) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.Relational/8.0.14) +- License: [MIT](https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) ``` @@ -2352,15 +2347,15 @@ SOFTWARE.
-Microsoft.EntityFrameworkCore.Sqlite 8.0.6 +Microsoft.EntityFrameworkCore.Sqlite 8.0.14 ## Microsoft.EntityFrameworkCore.Sqlite -- Version: 8.0.6 +- Version: 8.0.14 - Authors: Microsoft - Project URL: https://docs.microsoft.com/ef/core/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.Sqlite/8.0.6) -- License: [MIT](https://raw.githubusercontent.com/dotnet/efcore/release/6.0/LICENSE.txt) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.Sqlite/8.0.14) +- License: [MIT](https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) ``` @@ -2393,15 +2388,15 @@ SOFTWARE.
-Microsoft.EntityFrameworkCore.Sqlite.Core 8.0.6 +Microsoft.EntityFrameworkCore.Sqlite.Core 8.0.14 ## Microsoft.EntityFrameworkCore.Sqlite.Core -- Version: 8.0.6 +- Version: 8.0.14 - Authors: Microsoft - Project URL: https://docs.microsoft.com/ef/core/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.6) -- License: [MIT](https://raw.githubusercontent.com/dotnet/efcore/release/6.0/LICENSE.txt) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.14) +- License: [MIT](https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) ``` @@ -2434,15 +2429,15 @@ SOFTWARE.
-Microsoft.EntityFrameworkCore.Tools 8.0.6 +Microsoft.EntityFrameworkCore.Tools 8.0.14 ## Microsoft.EntityFrameworkCore.Tools -- Version: 8.0.6 +- Version: 8.0.14 - Authors: Microsoft - Project URL: https://docs.microsoft.com/ef/core/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.Tools/8.0.6) -- License: [MIT](https://raw.githubusercontent.com/dotnet/efcore/release/6.0/LICENSE.txt) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.Tools/8.0.14) +- License: [MIT](https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) ``` @@ -2598,14 +2593,14 @@ SOFTWARE.
-Microsoft.Extensions.Caching.Memory 8.0.0 +Microsoft.Extensions.Caching.Memory 8.0.1 ## Microsoft.Extensions.Caching.Memory -- Version: 8.0.0 +- Version: 8.0.1 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Caching.Memory/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Caching.Memory/8.0.1) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -2885,14 +2880,14 @@ SOFTWARE.
-Microsoft.Extensions.Configuration.Binder 8.0.1 +Microsoft.Extensions.Configuration.Binder 8.0.2 ## Microsoft.Extensions.Configuration.Binder -- Version: 8.0.1 +- Version: 8.0.2 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Binder/8.0.1) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Binder/8.0.2) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -3090,14 +3085,14 @@ SOFTWARE.
-Microsoft.Extensions.Configuration.FileExtensions 8.0.0 +Microsoft.Extensions.Configuration.FileExtensions 8.0.1 ## Microsoft.Extensions.Configuration.FileExtensions -- Version: 8.0.0 +- Version: 8.0.1 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.FileExtensions/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.FileExtensions/8.0.1) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -3172,14 +3167,14 @@ SOFTWARE.
-Microsoft.Extensions.Configuration.Json 8.0.0 +Microsoft.Extensions.Configuration.Json 8.0.1 ## Microsoft.Extensions.Configuration.Json -- Version: 8.0.0 +- Version: 8.0.1 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Json/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Json/8.0.1) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -3377,14 +3372,14 @@ SOFTWARE.
-Microsoft.Extensions.DependencyInjection.Abstractions 6.0.0 +Microsoft.Extensions.DependencyInjection 8.0.1 -## Microsoft.Extensions.DependencyInjection.Abstractions +## Microsoft.Extensions.DependencyInjection -- Version: 6.0.0 +- Version: 8.0.1 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/8.0.1) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -3418,14 +3413,14 @@ SOFTWARE.
-Microsoft.Extensions.DependencyInjection.Abstractions 8.0.1 +Microsoft.Extensions.DependencyInjection.Abstractions 6.0.0 ## Microsoft.Extensions.DependencyInjection.Abstractions -- Version: 8.0.1 +- Version: 6.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/8.0.1) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -3459,14 +3454,14 @@ SOFTWARE.
-Microsoft.Extensions.DependencyModel 8.0.0 +Microsoft.Extensions.DependencyInjection.Abstractions 8.0.2 -## Microsoft.Extensions.DependencyModel +## Microsoft.Extensions.DependencyInjection.Abstractions -- Version: 8.0.0 +- Version: 8.0.2 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyModel/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -3500,219 +3495,14 @@ SOFTWARE.
-Microsoft.Extensions.Diagnostics 8.0.0 - -## Microsoft.Extensions.Diagnostics - -- Version: 8.0.0 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Diagnostics/8.0.0) -- License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) - - -``` -The MIT License (MIT) - -Copyright (c) .NET Foundation and Contributors - -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` - -
- - -
-Microsoft.Extensions.Diagnostics.Abstractions 8.0.0 - -## Microsoft.Extensions.Diagnostics.Abstractions - -- Version: 8.0.0 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Diagnostics.Abstractions/8.0.0) -- License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) - - -``` -The MIT License (MIT) - -Copyright (c) .NET Foundation and Contributors - -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` - -
- - -
-Microsoft.Extensions.Diagnostics.HealthChecks 8.0.6 - -## Microsoft.Extensions.Diagnostics.HealthChecks - -- Version: 8.0.6 -- Authors: Microsoft -- Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Diagnostics.HealthChecks/8.0.6) -- License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) - - -``` -The MIT License (MIT) - -Copyright (c) .NET Foundation and Contributors - -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +Microsoft.Extensions.DependencyModel 8.0.2 -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` - -
- - -
-Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.6 - -## Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - -- Version: 8.0.6 -- Authors: Microsoft -- Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/8.0.6) -- License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) - - -``` -The MIT License (MIT) - -Copyright (c) .NET Foundation and Contributors - -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` - -
- - -
-Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.6 - -## Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore - -- Version: 8.0.6 -- Authors: Microsoft -- Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore/8.0.6) -- License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) - - -``` -The MIT License (MIT) - -Copyright (c) .NET Foundation and Contributors - -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` - -
- - -
-Microsoft.Extensions.FileProviders.Abstractions 6.0.0 - -## Microsoft.Extensions.FileProviders.Abstractions +## Microsoft.Extensions.DependencyModel -- Version: 6.0.0 +- Version: 8.0.2 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Abstractions/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyModel/8.0.2) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -3746,15 +3536,15 @@ SOFTWARE.
-Microsoft.Extensions.FileProviders.Abstractions 8.0.0 +Microsoft.Extensions.Diagnostics 8.0.0 -## Microsoft.Extensions.FileProviders.Abstractions +## Microsoft.Extensions.Diagnostics - Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Abstractions/8.0.0) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Diagnostics/8.0.0) +- License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) ``` @@ -3787,14 +3577,178 @@ SOFTWARE.
-Microsoft.Extensions.FileProviders.Physical 6.0.0 +Microsoft.Extensions.Diagnostics.Abstractions 8.0.1 + +## Microsoft.Extensions.Diagnostics.Abstractions + +- Version: 8.0.1 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Diagnostics.Abstractions/8.0.1) +- License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) -## Microsoft.Extensions.FileProviders.Physical + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+Microsoft.Extensions.Diagnostics.HealthChecks 8.0.14 + +## Microsoft.Extensions.Diagnostics.HealthChecks + +- Version: 8.0.14 +- Authors: Microsoft +- Project URL: https://asp.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Diagnostics.HealthChecks/8.0.14) +- License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.14 + +## Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions + +- Version: 8.0.14 +- Authors: Microsoft +- Project URL: https://asp.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/8.0.14) +- License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.14 + +## Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore + +- Version: 8.0.14 +- Authors: Microsoft +- Project URL: https://asp.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore/8.0.14) +- License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+Microsoft.Extensions.FileProviders.Abstractions 6.0.0 + +## Microsoft.Extensions.FileProviders.Abstractions - Version: 6.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Physical/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Abstractions/6.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -3828,14 +3782,14 @@ SOFTWARE.
-Microsoft.Extensions.FileProviders.Physical 8.0.0 +Microsoft.Extensions.FileProviders.Abstractions 8.0.0 -## Microsoft.Extensions.FileProviders.Physical +## Microsoft.Extensions.FileProviders.Abstractions - Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Physical/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Abstractions/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -3869,14 +3823,14 @@ SOFTWARE.
-Microsoft.Extensions.FileSystemGlobbing 6.0.0 +Microsoft.Extensions.FileProviders.Physical 6.0.0 -## Microsoft.Extensions.FileSystemGlobbing +## Microsoft.Extensions.FileProviders.Physical - Version: 6.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.FileSystemGlobbing/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Physical/6.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -3910,14 +3864,14 @@ SOFTWARE.
-Microsoft.Extensions.FileSystemGlobbing 8.0.0 +Microsoft.Extensions.FileProviders.Physical 8.0.0 -## Microsoft.Extensions.FileSystemGlobbing +## Microsoft.Extensions.FileProviders.Physical - Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.FileSystemGlobbing/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Physical/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -3951,14 +3905,14 @@ SOFTWARE.
-Microsoft.Extensions.Hosting 6.0.0 +Microsoft.Extensions.FileSystemGlobbing 6.0.0 -## Microsoft.Extensions.Hosting +## Microsoft.Extensions.FileSystemGlobbing - Version: 6.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Hosting/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.FileSystemGlobbing/6.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -3992,14 +3946,14 @@ SOFTWARE.
-Microsoft.Extensions.Hosting 8.0.0 +Microsoft.Extensions.FileSystemGlobbing 8.0.0 -## Microsoft.Extensions.Hosting +## Microsoft.Extensions.FileSystemGlobbing - Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Hosting/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.FileSystemGlobbing/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4033,14 +3987,14 @@ SOFTWARE.
-Microsoft.Extensions.Hosting.Abstractions 6.0.0 +Microsoft.Extensions.Hosting 6.0.0 -## Microsoft.Extensions.Hosting.Abstractions +## Microsoft.Extensions.Hosting - Version: 6.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Hosting.Abstractions/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Hosting/6.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4074,14 +4028,14 @@ SOFTWARE.
-Microsoft.Extensions.Hosting.Abstractions 8.0.0 +Microsoft.Extensions.Hosting 8.0.0 -## Microsoft.Extensions.Hosting.Abstractions +## Microsoft.Extensions.Hosting - Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Hosting.Abstractions/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Hosting/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4115,14 +4069,14 @@ SOFTWARE.
-Microsoft.Extensions.Http 8.0.0 +Microsoft.Extensions.Hosting.Abstractions 6.0.0 -## Microsoft.Extensions.Http +## Microsoft.Extensions.Hosting.Abstractions -- Version: 8.0.0 +- Version: 6.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Http/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Hosting.Abstractions/6.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4156,14 +4110,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging 6.0.0 +Microsoft.Extensions.Hosting.Abstractions 8.0.1 -## Microsoft.Extensions.Logging +## Microsoft.Extensions.Hosting.Abstractions -- Version: 6.0.0 +- Version: 8.0.1 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Hosting.Abstractions/8.0.1) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4197,14 +4151,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging 8.0.0 +Microsoft.Extensions.Http 8.0.0 -## Microsoft.Extensions.Logging +## Microsoft.Extensions.Http - Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Http/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4238,14 +4192,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging.Abstractions 6.0.0 +Microsoft.Extensions.Logging 6.0.0 -## Microsoft.Extensions.Logging.Abstractions +## Microsoft.Extensions.Logging - Version: 6.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Abstractions/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging/6.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4279,14 +4233,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging.Abstractions 8.0.1 +Microsoft.Extensions.Logging 8.0.0 -## Microsoft.Extensions.Logging.Abstractions +## Microsoft.Extensions.Logging -- Version: 8.0.1 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Abstractions/8.0.1) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4320,14 +4274,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging.Configuration 6.0.0 +Microsoft.Extensions.Logging 8.0.1 -## Microsoft.Extensions.Logging.Configuration +## Microsoft.Extensions.Logging -- Version: 6.0.0 +- Version: 8.0.1 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Configuration/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging/8.0.1) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4361,14 +4315,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging.Configuration 8.0.0 +Microsoft.Extensions.Logging.Abstractions 6.0.0 -## Microsoft.Extensions.Logging.Configuration +## Microsoft.Extensions.Logging.Abstractions -- Version: 8.0.0 +- Version: 6.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Configuration/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Abstractions/6.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4402,14 +4356,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging.Console 6.0.0 +Microsoft.Extensions.Logging.Abstractions 8.0.3 -## Microsoft.Extensions.Logging.Console +## Microsoft.Extensions.Logging.Abstractions -- Version: 6.0.0 +- Version: 8.0.3 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Console/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Abstractions/8.0.3) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4443,14 +4397,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging.Debug 6.0.0 +Microsoft.Extensions.Logging.Configuration 6.0.0 -## Microsoft.Extensions.Logging.Debug +## Microsoft.Extensions.Logging.Configuration - Version: 6.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Debug/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Configuration/6.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4484,14 +4438,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging.EventLog 6.0.0 +Microsoft.Extensions.Logging.Configuration 8.0.1 -## Microsoft.Extensions.Logging.EventLog +## Microsoft.Extensions.Logging.Configuration -- Version: 6.0.0 +- Version: 8.0.1 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.EventLog/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Configuration/8.0.1) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4525,14 +4479,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging.EventSource 6.0.0 +Microsoft.Extensions.Logging.Console 6.0.0 -## Microsoft.Extensions.Logging.EventSource +## Microsoft.Extensions.Logging.Console - Version: 6.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.EventSource/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Console/6.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4566,14 +4520,14 @@ SOFTWARE.
-Microsoft.Extensions.Options 6.0.0 +Microsoft.Extensions.Logging.Debug 6.0.0 -## Microsoft.Extensions.Options +## Microsoft.Extensions.Logging.Debug - Version: 6.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Options/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Debug/6.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4607,14 +4561,14 @@ SOFTWARE.
-Microsoft.Extensions.Options 8.0.2 +Microsoft.Extensions.Logging.EventLog 6.0.0 -## Microsoft.Extensions.Options +## Microsoft.Extensions.Logging.EventLog -- Version: 8.0.2 +- Version: 6.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Options/8.0.2) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.EventLog/6.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4648,14 +4602,14 @@ SOFTWARE.
-Microsoft.Extensions.Options.ConfigurationExtensions 6.0.0 +Microsoft.Extensions.Logging.EventSource 6.0.0 -## Microsoft.Extensions.Options.ConfigurationExtensions +## Microsoft.Extensions.Logging.EventSource - Version: 6.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.EventSource/6.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4689,14 +4643,14 @@ SOFTWARE.
-Microsoft.Extensions.Options.ConfigurationExtensions 8.0.0 +Microsoft.Extensions.Options 6.0.0 -## Microsoft.Extensions.Options.ConfigurationExtensions +## Microsoft.Extensions.Options -- Version: 8.0.0 +- Version: 6.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Options/6.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4730,14 +4684,14 @@ SOFTWARE.
-Microsoft.Extensions.Primitives 6.0.0 +Microsoft.Extensions.Options 8.0.2 -## Microsoft.Extensions.Primitives +## Microsoft.Extensions.Options -- Version: 6.0.0 +- Version: 8.0.2 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Primitives/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Options/8.0.2) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4771,14 +4725,14 @@ SOFTWARE.
-Microsoft.Extensions.Primitives 8.0.0 +Microsoft.Extensions.Options.ConfigurationExtensions 6.0.0 -## Microsoft.Extensions.Primitives +## Microsoft.Extensions.Options.ConfigurationExtensions -- Version: 8.0.0 +- Version: 6.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Primitives/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4812,216 +4766,23 @@ SOFTWARE.
-Microsoft.IdentityModel.Abstractions 7.0.3 - -## Microsoft.IdentityModel.Abstractions - -- Version: 7.0.3 -- Authors: Microsoft -- Project URL: https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.IdentityModel.Abstractions/7.0.3) -- License: [MIT](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) - - -``` -The MIT License (MIT) - -Copyright (c) Microsoft Corporation - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` - -
- - -
-Microsoft.IdentityModel.JsonWebTokens 7.0.3 - -## Microsoft.IdentityModel.JsonWebTokens - -- Version: 7.0.3 -- Authors: Microsoft -- Project URL: https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.IdentityModel.JsonWebTokens/7.0.3) -- License: [MIT](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) - - -``` -The MIT License (MIT) - -Copyright (c) Microsoft Corporation - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` - -
- - -
-Microsoft.IdentityModel.Logging 7.0.3 - -## Microsoft.IdentityModel.Logging - -- Version: 7.0.3 -- Authors: Microsoft -- Project URL: https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.IdentityModel.Logging/7.0.3) -- License: [MIT](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) - - -``` -The MIT License (MIT) - -Copyright (c) Microsoft Corporation - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` - -
- - -
-Microsoft.IdentityModel.Protocols 7.0.3 - -## Microsoft.IdentityModel.Protocols - -- Version: 7.0.3 -- Authors: Microsoft -- Project URL: https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.IdentityModel.Protocols/7.0.3) -- License: [MIT](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) - - -``` -The MIT License (MIT) - -Copyright (c) Microsoft Corporation - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` - -
- - -
-Microsoft.IdentityModel.Protocols.OpenIdConnect 7.0.3 +Microsoft.Extensions.Options.ConfigurationExtensions 8.0.0 -## Microsoft.IdentityModel.Protocols.OpenIdConnect +## Microsoft.Extensions.Options.ConfigurationExtensions -- Version: 7.0.3 +- Version: 8.0.0 - Authors: Microsoft -- Project URL: https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.IdentityModel.Protocols.OpenIdConnect/7.0.3) -- License: [MIT](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) ``` The MIT License (MIT) -Copyright (c) Microsoft Corporation - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` - -
- - -
-Microsoft.IdentityModel.Tokens 7.0.3 - -## Microsoft.IdentityModel.Tokens - -- Version: 7.0.3 -- Authors: Microsoft -- Project URL: https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.IdentityModel.Tokens/7.0.3) -- License: [MIT](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) - - -``` -The MIT License (MIT) +Copyright (c) .NET Foundation and Contributors -Copyright (c) Microsoft Corporation +All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -5046,14 +4807,14 @@ SOFTWARE.
-Microsoft.NET.ILLink.Tasks 8.0.0 +Microsoft.Extensions.Primitives 6.0.0 -## Microsoft.NET.ILLink.Tasks +## Microsoft.Extensions.Primitives -- Version: 8.0.0 +- Version: 6.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.NET.ILLink.Tasks/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Primitives/6.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -5087,14 +4848,14 @@ SOFTWARE.
-Microsoft.NET.ILLink.Tasks 8.0.1 +Microsoft.Extensions.Primitives 8.0.0 -## Microsoft.NET.ILLink.Tasks +## Microsoft.Extensions.Primitives -- Version: 8.0.1 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.NET.ILLink.Tasks/8.0.1) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Primitives/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -5128,23 +4889,21 @@ SOFTWARE.
-Microsoft.NET.ILLink.Tasks 8.0.2 +Microsoft.IdentityModel.Abstractions 7.1.2 -## Microsoft.NET.ILLink.Tasks +## Microsoft.IdentityModel.Abstractions -- Version: 8.0.2 +- Version: 7.1.2 - Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.NET.ILLink.Tasks/8.0.2) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) +- Project URL: https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.IdentityModel.Abstractions/7.1.2) +- License: [MIT](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) ``` The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors - -All rights reserved. +Copyright (c) Microsoft Corporation Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -5169,23 +4928,21 @@ SOFTWARE.
-Microsoft.NET.ILLink.Tasks 8.0.3 +Microsoft.IdentityModel.JsonWebTokens 7.1.2 -## Microsoft.NET.ILLink.Tasks +## Microsoft.IdentityModel.JsonWebTokens -- Version: 8.0.3 +- Version: 7.1.2 - Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.NET.ILLink.Tasks/8.0.3) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) +- Project URL: https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.IdentityModel.JsonWebTokens/7.1.2) +- License: [MIT](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) ``` The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors - -All rights reserved. +Copyright (c) Microsoft Corporation Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -5210,23 +4967,21 @@ SOFTWARE.
-Microsoft.NET.ILLink.Tasks 8.0.6 +Microsoft.IdentityModel.Logging 7.1.2 -## Microsoft.NET.ILLink.Tasks +## Microsoft.IdentityModel.Logging -- Version: 8.0.6 +- Version: 7.1.2 - Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.NET.ILLink.Tasks/8.0.6) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) +- Project URL: https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.IdentityModel.Logging/7.1.2) +- License: [MIT](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) ``` The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors - -All rights reserved. +Copyright (c) Microsoft Corporation Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -5251,19 +5006,21 @@ SOFTWARE.
-Microsoft.NET.Test.Sdk 17.10.0 +Microsoft.IdentityModel.Protocols 7.1.2 -## Microsoft.NET.Test.Sdk +## Microsoft.IdentityModel.Protocols -- Version: 17.10.0 +- Version: 7.1.2 - Authors: Microsoft -- Project URL: https://github.com/microsoft/vstest -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/17.10.0) -- License: [MIT](https://github.com/microsoft/vstest/raw/v17.4.1/LICENSE) +- Project URL: https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.IdentityModel.Protocols/7.1.2) +- License: [MIT](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) ``` -Copyright (c) 2020 Microsoft Corporation +The MIT License (MIT) + +Copyright (c) Microsoft Corporation Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -5288,229 +5045,21 @@ SOFTWARE.
-Microsoft.NETCore.Platforms 1.1.0 - -## Microsoft.NETCore.Platforms - -- Version: 1.1.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.NETCore.Platforms/1.1.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) - - -``` -.NET Library License Terms | .NET - - - - -MICROSOFT SOFTWARE LICENSE -TERMS - -MICROSOFT .NET -LIBRARY - -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. - -If -you comply with these license terms, you have the rights below. - -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  - -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` - -
- - -
-Microsoft.NETCore.Platforms 5.0.0 +Microsoft.IdentityModel.Protocols.OpenIdConnect 7.1.2 -## Microsoft.NETCore.Platforms +## Microsoft.IdentityModel.Protocols.OpenIdConnect -- Version: 5.0.0 +- Version: 7.1.2 - Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://github.com/dotnet/runtime -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.NETCore.Platforms/5.0.0) -- License: [MIT](https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) +- Project URL: https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.IdentityModel.Protocols.OpenIdConnect/7.1.2) +- License: [MIT](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) ``` The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors - -All rights reserved. +Copyright (c) Microsoft Corporation Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -5535,226 +5084,21 @@ SOFTWARE.
-Microsoft.NETCore.Targets 1.1.0 - -## Microsoft.NETCore.Targets - -- Version: 1.1.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.NETCore.Targets/1.1.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) - - -``` -.NET Library License Terms | .NET - - - - -MICROSOFT SOFTWARE LICENSE -TERMS - -MICROSOFT .NET -LIBRARY - -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. - -If -you comply with these license terms, you have the rights below. - -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  - -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` - -
- - -
-Microsoft.OpenApi 1.6.14 +Microsoft.IdentityModel.Tokens 7.1.2 -## Microsoft.OpenApi +## Microsoft.IdentityModel.Tokens -- Version: 1.6.14 +- Version: 7.1.2 - Authors: Microsoft -- Project URL: https://github.com/Microsoft/OpenAPI.NET -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.OpenApi/1.6.14) -- License: [MIT]( https://raw.githubusercontent.com/Microsoft/OpenAPI.NET/master/LICENSE) +- Project URL: https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.IdentityModel.Tokens/7.1.2) +- License: [MIT](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) ``` -Copyright (c) Microsoft Corporation. All rights reserved. +The MIT License (MIT) -MIT License +Copyright (c) Microsoft Corporation Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -5766,7 +5110,7 @@ furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER @@ -5779,19 +5123,23 @@ SOFTWARE.
-Microsoft.TestPlatform.ObjectModel 17.10.0 +Microsoft.NET.ILLink.Tasks 8.0.14 -## Microsoft.TestPlatform.ObjectModel +## Microsoft.NET.ILLink.Tasks -- Version: 17.10.0 +- Version: 8.0.14 - Authors: Microsoft -- Project URL: https://github.com/microsoft/vstest -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/17.10.0) -- License: [MIT](https://github.com/microsoft/vstest/raw/v17.4.1/LICENSE) +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.NET.ILLink.Tasks/8.0.14) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) ``` -Copyright (c) 2020 Microsoft Corporation +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -5816,14 +5164,14 @@ SOFTWARE.
-Microsoft.TestPlatform.TestHost 17.10.0 +Microsoft.NET.Test.Sdk 17.13.0 -## Microsoft.TestPlatform.TestHost +## Microsoft.NET.Test.Sdk -- Version: 17.10.0 +- Version: 17.13.0 - Authors: Microsoft - Project URL: https://github.com/microsoft/vstest -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.TestPlatform.TestHost/17.10.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/17.13.0) - License: [MIT](https://github.com/microsoft/vstest/raw/v17.4.1/LICENSE) @@ -5853,4581 +5201,1134 @@ SOFTWARE.
-Microsoft.Win32.Primitives 4.3.0 +Microsoft.NETCore.Platforms 1.1.0 -## Microsoft.Win32.Primitives +## Microsoft.NETCore.Platforms -- Version: 4.3.0 +- Version: 1.1.0 - Authors: Microsoft - Owners: microsoft,dotnetframework - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Win32.Primitives/4.3.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.NETCore.Platforms/1.1.0) - License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) ``` -.NET Library License Terms | .NET +core/license-information.md at main · dotnet/core · GitHub -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-Microsoft.Win32.Registry 5.0.0 -## Microsoft.Win32.Registry -- Version: 5.0.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://github.com/dotnet/runtime -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Win32.Registry/5.0.0) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
-
-Minio 6.0.2 -## Minio -- Version: 6.0.2 -- Authors: MinIO, Inc. -- Project URL: https://github.com/minio/minio-dotnet -- Source: [NuGet](https://www.nuget.org/packages/Minio/6.0.2) -- License: [Apache-2.0](https://github.com/minio/minio-dotnet/raw/master/LICENSE) -``` -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - 1. Definitions. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and +Skip to content - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - Copyright {yyyy} {name of copyright owner} - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 +Navigation Menu - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. -``` +Toggle navigation -
-
-Monai.Deploy.Messaging 2.0.3 -## Monai.Deploy.Messaging + -- Version: 2.0.3 -- Authors: MONAI Consortium -- Project URL: https://github.com/Project-MONAI/monai-deploy-messaging -- Source: [NuGet](https://www.nuget.org/packages/Monai.Deploy.Messaging/2.0.3) -- License: [Apache-2.0](https://github.com/Project-MONAI/monai-deploy-messaging/raw/main/LICENSE) -``` -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - 1. Definitions. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. + Sign in + - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and + Product + - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - Copyright [yyyy] [name of copyright owner] - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 +GitHub Copilot + Write better code with AI + - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---- -Copyright (c) MONAI Consortium. All rights reserved. -Licensed under the [Apache-2.0](LICENSE) license. -This software uses the Microsoft .NET 6.0 library, and the use of this software is subject to the [Microsoft software license terms](https://dotnet.microsoft.com/en-us/dotnet_library_license.htm). -By downloading this software, you agree to the license terms & all licenses listed on the [third-party licenses](third-party-licenses.md) page. -``` -
+Security + Find and fix vulnerabilities + -
-Monai.Deploy.Messaging.RabbitMQ 2.0.3 -## Monai.Deploy.Messaging.RabbitMQ -- Version: 2.0.3 -- Authors: MONAI Consortium -- Project URL: https://github.com/Project-MONAI/monai-deploy-messaging -- Source: [NuGet](https://www.nuget.org/packages/Monai.Deploy.Messaging.RabbitMQ/2.0.3) -- License: [Apache-2.0](https://github.com/Project-MONAI/monai-deploy-messaging/raw/main/LICENSE) -``` -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - 1. Definitions. +Actions + Automate any workflow + - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). +Codespaces + Instant dev environments + - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and +Issues + Plan and track work + - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. +Code Review + Manage code changes + - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - Copyright [yyyy] [name of copyright owner] - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +Discussions + Collaborate outside of code + - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---- -Copyright (c) MONAI Consortium. All rights reserved. -Licensed under the [Apache-2.0](LICENSE) license. -This software uses the Microsoft .NET 6.0 library, and the use of this software is subject to the [Microsoft software license terms](https://dotnet.microsoft.com/en-us/dotnet_library_license.htm). -By downloading this software, you agree to the license terms & all licenses listed on the [third-party licenses](third-party-licenses.md) page. -``` -
+Code Search + Find more, search less + -
-Monai.Deploy.Security 1.0.0 -## Monai.Deploy.Security -- Version: 1.0.0 -- Authors: MONAI Consortium -- Project URL: https://github.com/Project-MONAI/monai-deploy-security -- Source: [NuGet](https://www.nuget.org/packages/Monai.Deploy.Security/1.0.0) -- License: [Apache-2.0](https://github.com/Project-MONAI/monai-deploy-security/raw/develop/LICENSE) -``` -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ +Explore - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - 1. Definitions. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. + All features - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. + - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. + Documentation - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. + - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. + GitHub Skills - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. + - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. + Blog - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. + - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - Copyright [yyyy] [name of copyright owner] - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at + Solutions + - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---- -Copyright (c) MONAI Consortium. All rights reserved. -Licensed under the [Apache-2.0](LICENSE) license. -This software uses the Microsoft .NET 6.0 library, and the use of this software is subject to the [Microsoft software license terms](https://dotnet.microsoft.com/en-us/dotnet_library_license.htm). -By downloading this software, you agree to the license terms & all licenses listed on the [third-party licenses](third-party-licenses.md) page. -``` +By company size -
-
-Monai.Deploy.Storage 1.0.1 + Enterprises -## Monai.Deploy.Storage + -- Version: 1.0.1 -- Authors: MONAI Consortium -- Project URL: https://github.com/Project-MONAI/monai-deploy-storage -- Source: [NuGet](https://www.nuget.org/packages/Monai.Deploy.Storage/1.0.1) -- License: [Apache-2.0](https://github.com/Project-MONAI/monai-deploy-storage/raw/main/LICENSE) -``` -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ + Small and medium teams - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + - 1. Definitions. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. + Startups - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. + - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. + Nonprofits - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). + - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. +By use case - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and + DevSecOps - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and + - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. + DevOps - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. + - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. + CI/CD - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. + - END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. + View all use cases - Copyright [yyyy] [name of copyright owner] + - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---- -Copyright (c) MONAI Consortium. All rights reserved. -Licensed under the [Apache-2.0](LICENSE) license. -This software uses the Microsoft .NET 6.0 library, and the use of this software is subject to the [Microsoft software license terms](https://dotnet.microsoft.com/en-us/dotnet_library_license.htm). +By industry -By downloading this software, you agree to the license terms & all licenses listed on the [third-party licenses](third-party-licenses.md) page. -``` -
+ Healthcare -
-Monai.Deploy.Storage.MinIO 1.0.1 + -## Monai.Deploy.Storage.MinIO -- Version: 1.0.1 -- Authors: MONAI Consortium -- Project URL: https://github.com/Project-MONAI/monai-deploy-storage -- Source: [NuGet](https://www.nuget.org/packages/Monai.Deploy.Storage.MinIO/1.0.1) -- License: [Apache-2.0](https://github.com/Project-MONAI/monai-deploy-storage/raw/main/LICENSE) + Financial services -``` -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ + - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - 1. Definitions. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. + Manufacturing - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. + - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. + Government - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. + - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." + View all industries - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. + - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and + View all solutions + - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. + - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. + Resources + - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - Copyright [yyyy] [name of copyright owner] - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +Topics - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---- + AI -Copyright (c) MONAI Consortium. All rights reserved. -Licensed under the [Apache-2.0](LICENSE) license. + -This software uses the Microsoft .NET 6.0 library, and the use of this software is subject to the [Microsoft software license terms](https://dotnet.microsoft.com/en-us/dotnet_library_license.htm). -By downloading this software, you agree to the license terms & all licenses listed on the [third-party licenses](third-party-licenses.md) page. -``` -
+ DevOps + -
-Monai.Deploy.Storage.S3Policy 1.0.1 -## Monai.Deploy.Storage.S3Policy -- Version: 1.0.1 -- Authors: MONAI Consortium -- Project URL: https://github.com/Project-MONAI/monai-deploy-storage -- Source: [NuGet](https://www.nuget.org/packages/Monai.Deploy.Storage.S3Policy/1.0.1) -- License: [Apache-2.0](https://github.com/Project-MONAI/monai-deploy-storage/raw/main/LICENSE) + Security + -``` -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - 1. Definitions. + Software Development - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. + - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. + View all - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. + - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. +Explore - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and + Learning Pathways - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and + - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. + Events & Webinars - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. + - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. + Ebooks & Whitepapers - Copyright [yyyy] [name of copyright owner] + - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. + Customer Stories ---- + -Copyright (c) MONAI Consortium. All rights reserved. -Licensed under the [Apache-2.0](LICENSE) license. -This software uses the Microsoft .NET 6.0 library, and the use of this software is subject to the [Microsoft software license terms](https://dotnet.microsoft.com/en-us/dotnet_library_license.htm). -By downloading this software, you agree to the license terms & all licenses listed on the [third-party licenses](third-party-licenses.md) page. -``` + Partners -
+ -
-MongoDB.Bson 2.25.0 -## MongoDB.Bson -- Version: 2.25.0 -- Authors: MongoDB Inc. -- Project URL: https://www.mongodb.com/docs/drivers/csharp/ -- Source: [NuGet](https://www.nuget.org/packages/MongoDB.Bson/2.25.0) -- License: [Apache-2.0](https://raw.githubusercontent.com/mongodb/mongo-csharp-driver/master/LICENSE.md) + Executive Insights -``` -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ + - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - 1. Definitions. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. + Open Source + - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and +GitHub Sponsors + Fund open source developers + - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS +The ReadME Project + GitHub community articles + - APPENDIX: How to apply the Apache License to your work. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - Copyright {yyyy} {name of copyright owner} - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +Repositories - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. -``` -
+ Topics + -
-MongoDB.Driver 2.25.0 -## MongoDB.Driver -- Version: 2.25.0 -- Authors: MongoDB Inc. -- Project URL: https://www.mongodb.com/docs/drivers/csharp/ -- Source: [NuGet](https://www.nuget.org/packages/MongoDB.Driver/2.25.0) -- License: [Apache-2.0](https://raw.githubusercontent.com/mongodb/mongo-csharp-driver/master/LICENSE.md) + Trending + -``` -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - 1. Definitions. + Collections - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. + - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." + Enterprise + - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. +Enterprise platform + AI-powered developer platform + - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. +Available add-ons - Copyright {yyyy} {name of copyright owner} - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. -``` -
-
-MongoDB.Driver.Core 2.25.0 +Advanced Security + Enterprise-grade security features + -## MongoDB.Driver.Core -- Version: 2.25.0 -- Authors: MongoDB Inc. -- Project URL: https://www.mongodb.com/docs/drivers/csharp/ -- Source: [NuGet](https://www.nuget.org/packages/MongoDB.Driver.Core/2.25.0) -- License: [Apache-2.0](https://raw.githubusercontent.com/mongodb/mongo-csharp-driver/master/LICENSE.md) -``` -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - 1. Definitions. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. +Copilot for business + Enterprise-grade AI features + - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. +Premium Support + Enterprise-grade 24/7 support + - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and +Pricing - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - Copyright {yyyy} {name of copyright owner} +Search or jump to... - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. -``` -
-
-MongoDB.Libmongocrypt 1.8.2 -## MongoDB.Libmongocrypt +Search code, repositories, users, issues, pull requests... -- Version: 1.8.2 -- Authors: MongoDB Inc. -- Project URL: http://www.mongodb.org/display/DOCS/CSharp+Language+Center -- Source: [NuGet](https://www.nuget.org/packages/MongoDB.Libmongocrypt/1.8.2) -- License: [Apache-2.0](https://raw.githubusercontent.com/mongodb/mongo-csharp-driver/master/LICENSE.md) + -``` -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - 1. Definitions. + Search + - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: +Clear + - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - Copyright {yyyy} {name of copyright owner} - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. -``` -
-
-Mono.TextTemplating 2.2.1 -## Mono.TextTemplating -- Version: 2.2.1 -- Authors: mhutch -- Project URL: https://github.com/mono/t4 -- Source: [NuGet](https://www.nuget.org/packages/Mono.TextTemplating/2.2.1) -- License: [MIT](https://github.com/mono/t4/raw/main/LICENSE) -``` -Mono.TextTemplating is licensed under the MIT license: -Copyright (c) 2009-2011 Novell, Inc. (http://www.novell.com) -Copyright (c) 2011-2016 Xamarin Inc. (http://www.xamarin.com) -Copyright (c) Microsoft Corp. (http://www.microsoft.com) -Copyright (c) The contributors -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -``` -
-
-Moq 4.20.70 -## Moq -- Version: 4.20.70 -- Authors: Daniel Cazzulino, kzu -- Project URL: https://github.com/moq/moq -- Source: [NuGet](https://www.nuget.org/packages/Moq/4.20.70) -- License: [BSD 3-Clause License]( https://raw.githubusercontent.com/moq/moq4/main/License.txt) -``` -BSD 3-Clause License -Copyright (c) 2007, Clarius Consulting, Manas Technology Solutions, InSTEDD, -and Contributors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the names of the copyright holders nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -``` -
-
-NETStandard.Library 1.6.1 -## NETStandard.Library -- Version: 1.6.1 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/NETStandard.Library/1.6.1) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET + +Search syntax tips -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-NLog 5.3.2 -## NLog -- Version: 5.3.2 -- Authors: Jarek Kowalski,Kim Christensen,Julian Verdurmen -- Project URL: https://nlog-project.org/ -- Source: [NuGet](https://www.nuget.org/packages/NLog/5.3.2) -- License: [BSD 3-Clause License](https://github.com/NLog/NLog/raw/dev/LICENSE.txt) -``` -Copyright (c) 2004-2021 Jaroslaw Kowalski , Kim Christensen, Julian Verdurmen -All rights reserved. + Provide feedback + -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -* Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -* Neither the name of Jaroslaw Kowalski nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF -THE POSSIBILITY OF SUCH DAMAGE. -``` -
-
-NLog.Extensions.Logging 5.3.11 -## NLog.Extensions.Logging + +We read every piece of feedback, and take your input very seriously. -- Version: 5.3.11 -- Authors: Microsoft,Julian Verdurmen -- Project URL: https://github.com/NLog/NLog.Extensions.Logging -- Source: [NuGet](https://www.nuget.org/packages/NLog.Extensions.Logging/5.3.11) -- License: [BSD 2-Clause Simplified License](https://github.com/NLog/NLog.Extensions.Logging/raw/master/LICENSE) +Include my email address so I can be contacted -``` -Copyright (c) 2016, NLog -All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: + Cancel -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. + Submit feedback -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -``` -
-
-NLog.Web.AspNetCore 5.3.11 -## NLog.Web.AspNetCore -- Version: 5.3.11 -- Authors: Julian Verdurmen -- Project URL: https://github.com/NLog/NLog.Web -- Source: [NuGet](https://www.nuget.org/packages/NLog.Web.AspNetCore/5.3.11) -- License: [BSD 3-Clause License](https://github.com/NLog/NLog.Web/raw/master/LICENSE) -``` -BSD 3-Clause License -Copyright (c) 2015-2020, Jaroslaw Kowalski , Kim Christensen, Julian Verdurmen -All rights reserved. + Saved searches + +Use saved searches to filter your results more quickly -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -* Neither the name of NLog nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -``` -
-
-Newtonsoft.Json 13.0.1 -## Newtonsoft.Json + -- Version: 13.0.1 -- Authors: James Newton-King -- Project URL: https://www.newtonsoft.com/json -- Source: [NuGet](https://www.nuget.org/packages/Newtonsoft.Json/13.0.1) -- License: [MIT](https://github.com/JamesNK/Newtonsoft.Json/raw/master/LICENSE.md) -``` -The MIT License (MIT) -Copyright (c) 2007 James Newton-King -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: +Name -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -``` -
-
-Newtonsoft.Json 13.0.3 -## Newtonsoft.Json +Query -- Version: 13.0.3 -- Authors: James Newton-King -- Project URL: https://www.newtonsoft.com/json -- Source: [NuGet](https://www.nuget.org/packages/Newtonsoft.Json/13.0.3) -- License: [MIT](https://github.com/JamesNK/Newtonsoft.Json/raw/master/LICENSE.md) -``` -The MIT License (MIT) + To see all available qualifiers, see our documentation. + + -Copyright (c) 2007 James Newton-King -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -``` -
+ Cancel + Create saved search -
-NuGet.Frameworks 6.5.0 -## NuGet.Frameworks -- Version: 6.5.0 -- Authors: Microsoft -- Project URL: https://aka.ms/nugetprj -- Source: [NuGet](https://www.nuget.org/packages/NuGet.Frameworks/6.5.0) -- License: [Apache-2.0](https://github.com/NuGet/NuGet.Client/raw/dev/LICENSE.txt) -``` -Copyright (c) .NET Foundation and Contributors. -All rights reserved. -Licensed under the Apache License, Version 2.0 (the "License"); you may not use -these files except in compliance with the License. You may obtain a copy of the -License at + Sign in + -http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software distributed -under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR -CONDITIONS OF ANY KIND, either express or implied. See the License for the -specific language governing permissions and limitations under the License. -``` + Sign up + +Reseting focus -
-
-Polly 8.2.0 -## Polly -- Version: 8.2.0 -- Authors: Michael Wolfenden, App vNext -- Project URL: https://github.com/App-vNext/Polly -- Source: [NuGet](https://www.nuget.org/packages/Polly/8.2.0) -- License: [MIT]( https://licenses.nuget.org/MIT) -``` -'MIT' reference +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + -MIT License -SPDX identifier -MIT -License text -MIT License +Dismiss alert -Copyright (c) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and - associated documentation files (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: -The above copyright notice and this permission notice - (including the next paragraph) - shall be included in all copies or substantial - portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT - LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN - NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -SPDX web page -https://spdx.org/licenses/MIT.html -Notice -This license content is provided by the SPDX project. For more information about licenses.nuget.org, see our documentation. -Data pulled from spdx/license-list-data on February 9, 2023. -``` -
-
-Polly 8.4.0 -## Polly -- Version: 8.4.0 -- Authors: Michael Wolfenden, App vNext -- Project URL: https://github.com/App-vNext/Polly -- Source: [NuGet](https://www.nuget.org/packages/Polly/8.4.0) -- License: [MIT]( https://licenses.nuget.org/MIT) -``` -'MIT' reference -MIT License -SPDX identifier -MIT -License text -MIT License + dotnet + +/ -Copyright (c) - +core -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and - associated documentation files (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: -The above copyright notice and this permission notice - (including the next paragraph) - shall be included in all copies or substantial - portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT - LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN - NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -SPDX web page +Public -https://spdx.org/licenses/MIT.html -Notice -This license content is provided by the SPDX project. For more information about licenses.nuget.org, see our documentation. -Data pulled from spdx/license-list-data on February 9, 2023. -``` -
+ -
-Polly.Core 8.2.0 +Notifications + You must be signed in to change notification settings -## Polly.Core -- Version: 8.2.0 -- Authors: Michael Wolfenden, App vNext -- Project URL: https://github.com/App-vNext/Polly -- Source: [NuGet](https://www.nuget.org/packages/Polly.Core/8.2.0) -- License: [MIT]( https://licenses.nuget.org/MIT) + +Fork + 4.9k -``` -'MIT' reference -MIT License -SPDX identifier -MIT -License text + -MIT License + Star + 21.2k -Copyright (c) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and - associated documentation files (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: -The above copyright notice and this permission notice - (including the next paragraph) - shall be included in all copies or substantial - portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT - LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN - NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -SPDX web page -https://spdx.org/licenses/MIT.html -Notice -This license content is provided by the SPDX project. For more information about licenses.nuget.org, see our documentation. -Data pulled from spdx/license-list-data on February 9, 2023. -``` -
-
-Polly.Core 8.4.0 -## Polly.Core -- Version: 8.4.0 -- Authors: Michael Wolfenden, App vNext -- Project URL: https://github.com/App-vNext/Polly -- Source: [NuGet](https://www.nuget.org/packages/Polly.Core/8.4.0) -- License: [MIT]( https://licenses.nuget.org/MIT) -``` -'MIT' reference +Code -MIT License -SPDX identifier -MIT -License text -MIT License -Copyright (c) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and - associated documentation files (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: -The above copyright notice and this permission notice - (including the next paragraph) - shall be included in all copies or substantial - portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT - LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN - NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -SPDX web page -https://spdx.org/licenses/MIT.html -Notice -This license content is provided by the SPDX project. For more information about licenses.nuget.org, see our documentation. +Issues +310 -Data pulled from spdx/license-list-data on February 9, 2023. -``` -
-
-RabbitMQ.Client 6.8.1 -## RabbitMQ.Client -- Version: 6.8.1 -- Authors: VMware -- Project URL: https://www.rabbitmq.com/dotnet.html -- Source: [NuGet](https://www.nuget.org/packages/RabbitMQ.Client/6.8.1) -- License: [Apache-2.0](https://github.com/rabbitmq/rabbitmq-dotnet-client/raw/main/LICENSE-APACHE2) +Pull requests +3 -``` -Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - 1. Definitions. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. +Discussions - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." +Actions - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and +Security - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. +Insights - END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. + - Copyright [yyyy] [name of copyright owner] + - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - https://www.apache.org/licenses/LICENSE-2.0 +Additional navigation options - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. -``` -
+ -
-SQLitePCLRaw.bundle_e_sqlite3 2.1.6 -## SQLitePCLRaw.bundle_e_sqlite3 -- Version: 2.1.6 -- Authors: Eric Sink -- Source: [NuGet](https://www.nuget.org/packages/SQLitePCLRaw.bundle_e_sqlite3/2.1.6) -- License: [Apache-2.0](https://github.com/ericsink/SQLitePCL.raw/raw/master/LICENSE.TXT) -``` -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - 1. Definitions. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. + Code - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: + Issues - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS + Pull requests - APPENDIX: How to apply the Apache License to your work. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - Copyright [yyyy] [name of copyright owner] - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. -``` -
-
-SQLitePCLRaw.core 2.1.6 -## SQLitePCLRaw.core -- Version: 2.1.6 -- Authors: Eric Sink -- Source: [NuGet](https://www.nuget.org/packages/SQLitePCLRaw.core/2.1.6) -- License: [Apache-2.0](https://github.com/ericsink/SQLitePCL.raw/raw/master/LICENSE.TXT) + Discussions -``` -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - 1. Definitions. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). + Actions - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. + Security - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - Copyright [yyyy] [name of copyright owner] - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 + Insights - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. -``` -
-
-SQLitePCLRaw.lib.e_sqlite3 2.1.6 -## SQLitePCLRaw.lib.e_sqlite3 -- Version: 2.1.6 -- Authors: Eric Sink -- Source: [NuGet](https://www.nuget.org/packages/SQLitePCLRaw.lib.e_sqlite3/2.1.6) -- License: [Apache-2.0](https://github.com/ericsink/SQLitePCL.raw/raw/master/LICENSE.TXT) + -``` -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - 1. Definitions. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. +More information: - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. +Project copyright guidance - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). +Product distributions +Product distributions use the following license: - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. +On Linux and macOS: MIT license +On Windows: .NET Library License - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." +Product distributions include downloadable assets and runtime packs. +More information: - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. +Windows license information. +.NET Asset Licensing Model - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. +Footer - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + © 2025 GitHub, Inc. + - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 +Footer navigation - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. -``` -
+Terms -
-SQLitePCLRaw.provider.e_sqlite3 2.1.6 +Privacy -## SQLitePCLRaw.provider.e_sqlite3 -- Version: 2.1.6 -- Authors: Eric Sink -- Source: [NuGet](https://www.nuget.org/packages/SQLitePCLRaw.provider.e_sqlite3/2.1.6) -- License: [Apache-2.0](https://github.com/ericsink/SQLitePCL.raw/raw/master/LICENSE.TXT) +Security -``` -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ +Status - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - 1. Definitions. +Docs - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. +Contact - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. + Manage cookies + - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. + Do not share my personal information + - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - Copyright [yyyy] [name of copyright owner] - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. + You can’t perform that action at this time. ```
-SharpCompress 0.30.1 +Microsoft.NETCore.Platforms 5.0.0 -## SharpCompress +## Microsoft.NETCore.Platforms -- Version: 0.30.1 -- Authors: Adam Hathcock -- Project URL: https://github.com/adamhathcock/sharpcompress -- Source: [NuGet](https://www.nuget.org/packages/SharpCompress/0.30.1) -- License: [MIT](https://github.com/adamhathcock/sharpcompress/raw/master/LICENSE.txt) +- Version: 5.0.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://github.com/dotnet/runtime +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.NETCore.Platforms/5.0.0) +- License: [MIT](https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) ``` The MIT License (MIT) -Copyright (c) 2014 Adam Hathcock +Copyright (c) .NET Foundation and Contributors + +All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -10436,4847 +6337,1147 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. ```
-Snappier 1.0.0 +Microsoft.NETCore.Targets 1.1.0 -## Snappier +## Microsoft.NETCore.Targets -- Version: 1.0.0 -- Authors: btburnett3 -- Source: [NuGet](https://www.nuget.org/packages/Snappier/1.0.0) -- License: [BSD-3-Clause](https://github.com/brantburnett/Snappier/raw/main/COPYING.txt) +- Version: 1.1.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.NETCore.Targets/1.1.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) ``` -Copyright 2011-2020, Google, Inc. and Snappier Authors -All rights reserved. +core/license-information.md at main · dotnet/core · GitHub -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google, Inc., any Snappier authors, nor the -names of its contributors may be used to endorse or promote products -derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -=== -Some of the benchmark data in testdata/ is licensed differently: - - fireworks.jpeg is Copyright 2013 Steinar H. Gunderson, and - is licensed under the Creative Commons Attribution 3.0 license - (CC-BY-3.0). See https://creativecommons.org/licenses/by/3.0/ - for more information. - - kppkn.gtb is taken from the Gaviota chess tablebase set, and - is licensed under the MIT License. See - https://sites.google.com/site/gaviotachessengine/Home/endgame-tablebases-1 - for more information. - - paper-100k.pdf is an excerpt (bytes 92160 to 194560) from the paper - “Combinatorial Modeling of Chromatin Features Quantitatively Predicts DNA - Replication Timing in _Drosophila_” by Federico Comoglio and Renato Paro, - which is licensed under the CC-BY license. See - http://www.ploscompbiol.org/static/license for more information. - - alice29.txt, asyoulik.txt, plrabn12.txt and lcet10.txt are from Project - Gutenberg. The first three have expired copyrights and are in the public - domain; the latter does not have expired copyright, but is still in the - public domain according to the license information - (http://www.gutenberg.org/ebooks/53). -``` -
-
-SpecFlow 3.9.74 -## SpecFlow -- Version: 3.9.74 -- Authors: SpecFlow Team -- Owners: SpecFlow Team -- Project URL: https://www.specflow.org/ -- Source: [NuGet](https://www.nuget.org/packages/SpecFlow/3.9.74) -- License: [New BSD License](https://github.com/SpecFlowOSS/SpecFlow/raw/master/LICENSE.txt) -``` -SpecFlow License (New BSD License) -Copyright (c) 2020, Tricentis GmbH -Disclaimer: -* No code of customer projects was used to create this project. - * Tricentis has the full rights to publish the initial codebase. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the SpecFlow project nor the - names of its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED ''AS IS'' AND ANY -EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL TRICENTIS OR CONTRIBUTORS BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -``` -
-
-SpecFlow.Internal.Json 1.0.8 -## SpecFlow.Internal.Json -- Version: 1.0.8 -- Authors: SpecFlow Team -- Project URL: https://specflow.org/ -- Source: [NuGet](https://www.nuget.org/packages/SpecFlow.Internal.Json/1.0.8) -- License: [MIT](https://github.com/SpecFlowOSS/SpecFlow.Internal.Json/raw/master/LICENSE) -``` -The MIT License (MIT) -Copyright (c) 2018 Alex Parker -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -``` -
-
-SpecFlow.Plus.LivingDocPlugin 3.9.57 -## SpecFlow.Plus.LivingDocPlugin -- Version: 3.9.57 -- Authors: SpecFlow Team -- Owners: SpecFlow Team -- Project URL: https://docs.specflow.org/projects/specflow-livingdoc -- Source: [NuGet](https://www.nuget.org/packages/SpecFlow.Plus.LivingDocPlugin/3.9.57) -- License: [New BSD License](https://github.com/SpecFlowOSS/SpecFlow/raw/master/LICENSE.txt) -``` -SpecFlow License (New BSD License) -Copyright (c) 2020, Tricentis GmbH -Disclaimer: -* No code of customer projects was used to create this project. - * Tricentis has the full rights to publish the initial codebase. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the SpecFlow project nor the - names of its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED ''AS IS'' AND ANY -EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL TRICENTIS OR CONTRIBUTORS BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -``` -
-
-SpecFlow.Tools.MsBuild.Generation 3.9.74 -## SpecFlow.Tools.MsBuild.Generation +Skip to content -- Version: 3.9.74 -- Authors: SpecFlow Team -- Owners: SpecFlow Team -- Project URL: https://www.specflow.org/ -- Source: [NuGet](https://www.nuget.org/packages/SpecFlow.Tools.MsBuild.Generation/3.9.74) -- License: [New BSD License](https://github.com/SpecFlowOSS/SpecFlow/raw/master/LICENSE.txt) -``` -SpecFlow License (New BSD License) -Copyright (c) 2020, Tricentis GmbH -Disclaimer: -* No code of customer projects was used to create this project. - * Tricentis has the full rights to publish the initial codebase. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the SpecFlow project nor the - names of its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED ''AS IS'' AND ANY -EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL TRICENTIS OR CONTRIBUTORS BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -``` -
-
-SpecFlow.xUnit 3.9.74 -## SpecFlow.xUnit -- Version: 3.9.74 -- Authors: SpecFlow Team -- Owners: SpecFlow Team -- Project URL: https://www.specflow.org/ -- Source: [NuGet](https://www.nuget.org/packages/SpecFlow.xUnit/3.9.74) -- License: [New BSD License](https://github.com/SpecFlowOSS/SpecFlow/raw/master/LICENSE.txt) +Navigation Menu -``` -SpecFlow License (New BSD License) +Toggle navigation -Copyright (c) 2020, Tricentis GmbH -Disclaimer: -* No code of customer projects was used to create this project. - * Tricentis has the full rights to publish the initial codebase. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of the SpecFlow project nor the - names of its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED ''AS IS'' AND ANY -EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL TRICENTIS OR CONTRIBUTORS BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -``` + -
-
-Swashbuckle.AspNetCore 6.6.2 -## Swashbuckle.AspNetCore -- Version: 6.6.2 -- Authors: domaindrivendev -- Owners: domaindrivendev -- Project URL: https://github.com/domaindrivendev/Swashbuckle.AspNetCore -- Source: [NuGet](https://www.nuget.org/packages/Swashbuckle.AspNetCore/6.6.2) -- License: [MIT](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/raw/master/LICENSE) -``` -The MIT License (MIT) -Copyright (c) 2016 Richard Morris -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
+ Sign in + -
-Swashbuckle.AspNetCore.Swagger 6.6.2 -## Swashbuckle.AspNetCore.Swagger -- Version: 6.6.2 -- Authors: domaindrivendev -- Project URL: https://github.com/domaindrivendev/Swashbuckle.AspNetCore -- Source: [NuGet](https://www.nuget.org/packages/Swashbuckle.AspNetCore.Swagger/6.6.2) -- License: [MIT](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/raw/master/LICENSE) -``` -The MIT License (MIT) -Copyright (c) 2016 Richard Morris -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + Product + -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
-
-Swashbuckle.AspNetCore.SwaggerGen 6.6.2 -## Swashbuckle.AspNetCore.SwaggerGen -- Version: 6.6.2 -- Authors: domaindrivendev -- Project URL: https://github.com/domaindrivendev/Swashbuckle.AspNetCore -- Source: [NuGet](https://www.nuget.org/packages/Swashbuckle.AspNetCore.SwaggerGen/6.6.2) -- License: [MIT](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/raw/master/LICENSE) -``` -The MIT License (MIT) -Copyright (c) 2016 Richard Morris -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
+GitHub Copilot + Write better code with AI + -
-Swashbuckle.AspNetCore.SwaggerUI 6.6.2 -## Swashbuckle.AspNetCore.SwaggerUI -- Version: 6.6.2 -- Authors: domaindrivendev -- Project URL: https://github.com/domaindrivendev/Swashbuckle.AspNetCore -- Source: [NuGet](https://www.nuget.org/packages/Swashbuckle.AspNetCore.SwaggerUI/6.6.2) -- License: [MIT](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/raw/master/LICENSE) -``` -The MIT License (MIT) -Copyright (c) 2016 Richard Morris +Security + Find and fix vulnerabilities + -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
-
-System.AppContext 4.3.0 -## System.AppContext +Actions + Automate any workflow + -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.AppContext/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS +Codespaces + Instant dev environments + -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
+Issues + Plan and track work + -
-System.Buffers 4.3.0 -## System.Buffers -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Buffers/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET +Code Review + Manage code changes + -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` +Discussions + Collaborate outside of code + -
-
-System.Buffers 4.5.1 -## System.Buffers -- Version: 4.5.1 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Buffers/4.5.1) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET +Code Search + Find more, search less + -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. +Explore -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` + All features -
+ -
-System.CodeDom 4.4.0 -## System.CodeDom + Documentation -- Version: 4.4.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.CodeDom/4.4.0) -- License: [MIT]( https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) + -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + GitHub Skills -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
-
-System.Collections 4.3.0 -## System.Collections + Blog -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Collections/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  + Solutions + -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Collections.Concurrent 4.3.0 -## System.Collections.Concurrent -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Collections.Concurrent/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) +By company size -``` -.NET Library License Terms | .NET + Enterprises + -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY + Small and medium teams -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. + -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` + Startups -
+ -
-System.Collections.Immutable 6.0.0 -## System.Collections.Immutable + Nonprofits -- Version: 6.0.0 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Collections.Immutable/6.0.0) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors -All rights reserved. +By use case -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` + DevSecOps -
+ -
-System.CommandLine 2.0.0-beta4.22272.1 -## System.CommandLine + DevOps -- Version: 2.0.0-beta4.22272.1 -- Authors: Microsoft -- Project URL: https://github.com/dotnet/command-line-api -- Source: [NuGet](https://www.nuget.org/packages/System.CommandLine/2.0.0-beta4.22272.1) -- License: [MIT](https://github.com/dotnet/command-line-api/raw/main/LICENSE.md) + -``` -The MIT License (MIT) -Copyright © .NET Foundation and Contributors + CI/CD -All rights reserved. + -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` + View all use cases -
+ -
-System.CommandLine.Hosting 0.4.0-alpha.22272.1 -## System.CommandLine.Hosting -- Version: 0.4.0-alpha.22272.1 -- Authors: Microsoft -- Project URL: https://github.com/dotnet/command-line-api -- Source: [NuGet](https://www.nuget.org/packages/System.CommandLine.Hosting/0.4.0-alpha.22272.1) -- License: [MIT](https://github.com/dotnet/command-line-api/raw/main/LICENSE.md) -``` -The MIT License (MIT) +By industry -Copyright © .NET Foundation and Contributors -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + Healthcare -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
+ Financial services -
-System.CommandLine.NamingConventionBinder 2.0.0-beta4.22272.1 + -## System.CommandLine.NamingConventionBinder -- Version: 2.0.0-beta4.22272.1 -- Authors: Microsoft -- Project URL: https://github.com/dotnet/command-line-api -- Source: [NuGet](https://www.nuget.org/packages/System.CommandLine.NamingConventionBinder/2.0.0-beta4.22272.1) -- License: [MIT](https://github.com/dotnet/command-line-api/raw/main/LICENSE.md) + Manufacturing -``` -The MIT License (MIT) + -Copyright © .NET Foundation and Contributors -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + Government -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
+ View all industries -
-System.CommandLine.Rendering 0.4.0-alpha.22272.1 + -## System.CommandLine.Rendering -- Version: 0.4.0-alpha.22272.1 -- Authors: Microsoft -- Project URL: https://github.com/dotnet/command-line-api -- Source: [NuGet](https://www.nuget.org/packages/System.CommandLine.Rendering/0.4.0-alpha.22272.1) -- License: [MIT](https://github.com/dotnet/command-line-api/raw/main/LICENSE.md) -``` -The MIT License (MIT) -Copyright © .NET Foundation and Contributors -All rights reserved. + View all solutions + -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
-
-System.Composition 6.0.0 + Resources + -## System.Composition -- Version: 6.0.0 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Composition/6.0.0) -- License: [MICROSOFT .NET LIBRARY License](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors -All rights reserved. +Topics -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` + AI -
+ -
-System.Composition.AttributedModel 6.0.0 -## System.Composition.AttributedModel + DevOps -- Version: 6.0.0 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Composition.AttributedModel/6.0.0) -- License: [MICROSOFT .NET LIBRARY License](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors + Security -All rights reserved. + -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` + Software Development -
+ -
-System.Composition.Convention 6.0.0 -## System.Composition.Convention + View all -- Version: 6.0.0 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Composition.Convention/6.0.0) -- License: [MICROSOFT .NET LIBRARY License](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Explore -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
+ Learning Pathways -
-System.Composition.Hosting 6.0.0 + -## System.Composition.Hosting -- Version: 6.0.0 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Composition.Hosting/6.0.0) -- License: [MICROSOFT .NET LIBRARY License](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors + Events & Webinars -All rights reserved. + -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
+ Ebooks & Whitepapers -
-System.Composition.Runtime 6.0.0 + -## System.Composition.Runtime -- Version: 6.0.0 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Composition.Runtime/6.0.0) -- License: [MICROSOFT .NET LIBRARY License](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + Customer Stories -``` -The MIT License (MIT) + -Copyright (c) .NET Foundation and Contributors -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + Partners -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
-
-System.Composition.TypedParts 6.0.0 -## System.Composition.TypedParts + Executive Insights -- Version: 6.0.0 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Composition.TypedParts/6.0.0) -- License: [MICROSOFT .NET LIBRARY License](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
+ Open Source + -
-System.Configuration.ConfigurationManager 4.4.0 -## System.Configuration.ConfigurationManager -- Version: 4.4.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Configuration.ConfigurationManager/4.4.0) -- License: [MIT]( https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +GitHub Sponsors + Fund open source developers + -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
-
-System.Configuration.ConfigurationManager 4.5.0 -## System.Configuration.ConfigurationManager -- Version: 4.5.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Configuration.ConfigurationManager/4.5.0) -- License: [MIT]( https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) -``` -The MIT License (MIT) +The ReadME Project + GitHub community articles + -Copyright (c) .NET Foundation and Contributors -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Repositories -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
+ Topics -
-System.Console 4.3.0 + -## System.Console -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Console/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + Trending -``` -.NET Library License Terms | .NET + + Collections -MICROSOFT SOFTWARE LICENSE -TERMS + -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Diagnostics.Debug 4.3.0 + Enterprise + -## System.Diagnostics.Debug -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Diagnostics.Debug/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` +Enterprise platform + AI-powered developer platform + -
-
-System.Diagnostics.DiagnosticSource 4.3.0 -## System.Diagnostics.DiagnosticSource +Available add-ons -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/4.3.0) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Advanced Security + Enterprise-grade security features + -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
-
-System.Diagnostics.DiagnosticSource 6.0.0 -## System.Diagnostics.DiagnosticSource -- Version: 6.0.0 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/6.0.0) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) +Copilot for business + Enterprise-grade AI features + -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
+Premium Support + Enterprise-grade 24/7 support + -
-System.Diagnostics.DiagnosticSource 8.0.0 -## System.Diagnostics.DiagnosticSource -- Version: 8.0.0 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/8.0.0) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors +Pricing -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
-
-System.Diagnostics.EventLog 6.0.0 -## System.Diagnostics.EventLog -- Version: 6.0.0 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Diagnostics.EventLog/6.0.0) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors +Search or jump to... -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
-
-System.Diagnostics.Tools 4.3.0 +Search code, repositories, users, issues, pull requests... -## System.Diagnostics.Tools + -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Diagnostics.Tools/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET + Search + -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Diagnostics.Tracing 4.3.0 -## System.Diagnostics.Tracing -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Diagnostics.Tracing/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) +Clear + -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Globalization 4.3.0 -## System.Globalization -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Globalization/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Globalization.Calendars 4.3.0 -## System.Globalization.Calendars -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Globalization.Calendars/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Globalization.Extensions 4.3.0 -## System.Globalization.Extensions -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Globalization.Extensions/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + -``` -.NET Library License Terms | .NET +Search syntax tips -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.IO 4.3.0 -## System.IO -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.IO/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + Provide feedback + -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  + +We read every piece of feedback, and take your input very seriously. -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
+Include my email address so I can be contacted -
-System.IO.Abstractions 21.0.2 + Cancel -## System.IO.Abstractions + Submit feedback -- Version: 21.0.2 -- Authors: Tatham Oddie & friends -- Project URL: https://github.com/TestableIO/System.IO.Abstractions -- Source: [NuGet](https://www.nuget.org/packages/System.IO.Abstractions/21.0.2) -- License: [MIT](https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) -``` -The MIT License (MIT) -Copyright (c) Tatham Oddie and Contributors -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
+ Saved searches + +Use saved searches to filter your results more quickly -
-System.IO.Abstractions.TestingHelpers 21.0.2 -## System.IO.Abstractions.TestingHelpers -- Version: 21.0.2 -- Authors: Tatham Oddie & friends -- Project URL: https://github.com/TestableIO/System.IO.Abstractions -- Source: [NuGet](https://www.nuget.org/packages/System.IO.Abstractions.TestingHelpers/21.0.2) -- License: [MIT](https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) -``` -The MIT License (MIT) -Copyright (c) Tatham Oddie and Contributors -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
-
-System.IO.Compression 4.3.0 -## System.IO.Compression +Name -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.IO.Compression/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET +Query -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. + To see all available qualifiers, see our documentation. + + -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
+ Cancel -
-System.IO.Compression.ZipFile 4.3.0 + Create saved search -## System.IO.Compression.ZipFile -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.IO.Compression.ZipFile/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS + Sign in + -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. + Sign up + +Reseting focus -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.IO.FileSystem 4.3.0 -## System.IO.FileSystem -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.IO.FileSystem/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + -``` -.NET Library License Terms | .NET +Dismiss alert -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.IO.FileSystem.Primitives 4.3.0 -## System.IO.FileSystem.Primitives -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.IO.FileSystem.Primitives/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET + dotnet + +/ -MICROSOFT SOFTWARE LICENSE -TERMS +core -MICROSOFT .NET -LIBRARY +Public -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
+ +Notifications + You must be signed in to change notification settings -
-System.IO.Hashing 8.0.0 -## System.IO.Hashing + -- Version: 8.0.0 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.IO.Hashing/8.0.0) -- License: [MIT](https://raw.githubusercontent.com/dotnet/runtime/main/LICENSE.TXT) +Fork + 4.9k -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors -All rights reserved. + -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + Star + 21.2k -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. ```
-System.IO.Pipelines 6.0.3 +Microsoft.OpenApi 1.6.23 -## System.IO.Pipelines +## Microsoft.OpenApi -- Version: 6.0.3 +- Version: 1.6.23 - Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.IO.Pipelines/6.0.3) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) +- Project URL: https://github.com/Microsoft/OpenAPI.NET +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.OpenApi/1.6.23) +- License: [MIT]( https://raw.githubusercontent.com/Microsoft/OpenAPI.NET/master/LICENSE) ``` -The MIT License (MIT) - -Copyright (c) .NET Foundation and Contributors +Copyright (c) Microsoft Corporation. All rights reserved. -All rights reserved. +MIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -15288,7 +7489,7 @@ furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER @@ -15301,23 +7502,19 @@ SOFTWARE.
-System.IO.Pipelines 8.0.0 +Microsoft.TestPlatform.ObjectModel 17.13.0 -## System.IO.Pipelines +## Microsoft.TestPlatform.ObjectModel -- Version: 8.0.0 +- Version: 17.13.0 - Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.IO.Pipelines/8.0.0) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) +- Project URL: https://github.com/microsoft/vstest +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/17.13.0) +- License: [MIT](https://github.com/microsoft/vstest/raw/v17.4.1/LICENSE) ``` -The MIT License (MIT) - -Copyright (c) .NET Foundation and Contributors - -All rights reserved. +Copyright (c) 2020 Microsoft Corporation Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -15342,21 +7539,19 @@ SOFTWARE.
-System.IdentityModel.Tokens.Jwt 7.0.3 +Microsoft.TestPlatform.TestHost 17.13.0 -## System.IdentityModel.Tokens.Jwt +## Microsoft.TestPlatform.TestHost -- Version: 7.0.3 +- Version: 17.13.0 - Authors: Microsoft -- Project URL: https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet -- Source: [NuGet](https://www.nuget.org/packages/System.IdentityModel.Tokens.Jwt/7.0.3) -- License: [MIT](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) +- Project URL: https://github.com/microsoft/vstest +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.TestPlatform.TestHost/17.13.0) +- License: [MIT](https://github.com/microsoft/vstest/raw/v17.4.1/LICENSE) ``` -The MIT License (MIT) - -Copyright (c) Microsoft Corporation +Copyright (c) 2020 Microsoft Corporation Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -15381,6991 +7576,1125 @@ SOFTWARE.
-System.Linq 4.3.0 +Microsoft.Win32.Primitives 4.3.0 -## System.Linq +## Microsoft.Win32.Primitives - Version: 4.3.0 - Authors: Microsoft - Owners: microsoft,dotnetframework - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Linq/4.3.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Win32.Primitives/4.3.0) - License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) ``` -.NET Library License Terms | .NET +core/license-information.md at main · dotnet/core · GitHub -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Linq.Async 6.0.1 -## System.Linq.Async -- Version: 6.0.1 -- Authors: .NET Foundation and Contributors -- Project URL: https://github.com/dotnet/reactive -- Source: [NuGet](https://www.nuget.org/packages/System.Linq.Async/6.0.1) -- License: [MIT](https://github.com/dotnet/reactive/raw/main/LICENSE) -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
-
-System.Linq.Expressions 4.3.0 -## System.Linq.Expressions -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Linq.Expressions/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Memory 4.5.5 -## System.Memory -- Version: 4.5.5 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Memory/4.5.5) -- License: [MIT](https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors -All rights reserved. +Skip to content -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
-
-System.Net.Http 4.3.0 -## System.Net.Http -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Net.Http/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET +Navigation Menu -MICROSOFT SOFTWARE LICENSE -TERMS +Toggle navigation -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  + -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Net.Http 4.3.4 -## System.Net.Http -- Version: 4.3.4 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Net.Http/4.3.4) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY + Sign in + -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Net.Primitives 4.3.0 -## System.Net.Primitives + Product + -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Net.Primitives/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
+GitHub Copilot + Write better code with AI + -
-System.Net.Sockets 4.3.0 -## System.Net.Sockets -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Net.Sockets/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET +Security + Find and fix vulnerabilities + -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  +Actions + Automate any workflow + -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.ObjectModel 4.3.0 -## System.ObjectModel -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.ObjectModel/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) +Codespaces + Instant dev environments + -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. +Issues + Plan and track work + -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Reactive 6.0.0 -## System.Reactive +Code Review + Manage code changes + -- Version: 6.0.0 -- Authors: .NET Foundation and Contributors -- Project URL: https://github.com/dotnet/reactive -- Source: [NuGet](https://www.nuget.org/packages/System.Reactive/6.0.0) -- License: [MIT](https://github.com/dotnet/reactive/raw/main/LICENSE) -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Discussions + Collaborate outside of code + -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
-
-System.Reflection 4.3.0 -## System.Reflection -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Reflection/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) +Code Search + Find more, search less + -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY +Explore -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  + All features -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` + -
-
-System.Reflection.Emit 4.3.0 + Documentation -## System.Reflection.Emit + -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.Emit/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET + GitHub Skills + -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  + Blog -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` + -
-
-System.Reflection.Emit.ILGeneration 4.3.0 -## System.Reflection.Emit.ILGeneration -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.Emit.ILGeneration/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET + Solutions + -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` +By company size -
-
-System.Reflection.Emit.Lightweight 4.3.0 + Enterprises -## System.Reflection.Emit.Lightweight + -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.Emit.Lightweight/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET + Small and medium teams + -MICROSOFT SOFTWARE LICENSE -TERMS + Startups -MICROSOFT .NET -LIBRARY + -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  + Nonprofits -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` + -
-
-System.Reflection.Extensions 4.3.0 -## System.Reflection.Extensions +By use case -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.Extensions/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET + DevSecOps + -MICROSOFT SOFTWARE LICENSE -TERMS + DevOps -MICROSOFT .NET -LIBRARY + -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  + CI/CD -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` + -
-
-System.Reflection.Metadata 1.6.0 + View all use cases -## System.Reflection.Metadata + -- Version: 1.6.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.Metadata/1.6.0) -- License: [MIT](https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +By industry -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
+ Healthcare + -
-System.Reflection.Metadata 6.0.1 -## System.Reflection.Metadata -- Version: 6.0.1 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.Metadata/6.0.1) -- License: [MIT](https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) + Financial services + -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors -All rights reserved. + Manufacturing -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
+ Government + -
-System.Reflection.Primitives 4.3.0 -## System.Reflection.Primitives -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.Primitives/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + View all industries + -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY + View all solutions + -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. + -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
+ Resources + -
-System.Reflection.TypeExtensions 4.3.0 -## System.Reflection.TypeExtensions -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.TypeExtensions/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET +Topics -MICROSOFT SOFTWARE LICENSE -TERMS + AI -MICROSOFT .NET -LIBRARY + -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  + DevOps -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` + -
-
-System.Resources.ResourceManager 4.3.0 + Security -## System.Resources.ResourceManager + -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Resources.ResourceManager/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET + Software Development + -MICROSOFT SOFTWARE LICENSE -TERMS + View all -MICROSOFT .NET -LIBRARY + -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
+Explore -
-System.Runtime 4.3.0 -## System.Runtime -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Runtime/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + Learning Pathways + -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS + Events & Webinars -MICROSOFT .NET -LIBRARY + -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
+ Ebooks & Whitepapers + -
-System.Runtime.CompilerServices.Unsafe 6.0.0 -## System.Runtime.CompilerServices.Unsafe -- Version: 6.0.0 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe/6.0.0) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + Customer Stories + -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors -All rights reserved. + Partners -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
-
-System.Runtime.Extensions 4.3.0 + Executive Insights -## System.Runtime.Extensions + -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Runtime.Extensions/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY + Open Source + -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Runtime.Handles 4.3.0 -## System.Runtime.Handles -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Runtime.Handles/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) +GitHub Sponsors + Fund open source developers + -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. +The ReadME Project + GitHub community articles + -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
+Repositories -
-System.Runtime.InteropServices 4.3.0 -## System.Runtime.InteropServices -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Runtime.InteropServices/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + Topics + -``` -.NET Library License Terms | .NET + Trending + -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. + Collections -If -you comply with these license terms, you have the rights below. + -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Runtime.InteropServices.RuntimeInformation 4.3.0 -## System.Runtime.InteropServices.RuntimeInformation -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Runtime.InteropServices.RuntimeInformation/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + Enterprise + -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Runtime.Loader 4.3.0 +Enterprise platform + AI-powered developer platform + -## System.Runtime.Loader -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Runtime.Loader/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET +Available add-ons -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. +Advanced Security + Enterprise-grade security features + -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Runtime.Numerics 4.3.0 -## System.Runtime.Numerics -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Runtime.Numerics/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) +Copilot for business + Enterprise-grade AI features + -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY +Premium Support + Enterprise-grade 24/7 support + -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Security.AccessControl 5.0.0 +Pricing -## System.Security.AccessControl -- Version: 5.0.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://github.com/dotnet/runtime -- Source: [NuGet](https://www.nuget.org/packages/System.Security.AccessControl/5.0.0) -- License: [MIT](https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
-
-System.Security.Cryptography.Algorithms 4.3.0 +Search or jump to... -## System.Security.Cryptography.Algorithms -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Security.Cryptography.Algorithms/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET +Search code, repositories, users, issues, pull requests... -MICROSOFT SOFTWARE LICENSE -TERMS + -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  + Search + -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Security.Cryptography.Cng 4.3.0 -## System.Security.Cryptography.Cng -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Security.Cryptography.Cng/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY +Clear + -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Security.Cryptography.Csp 4.3.0 -## System.Security.Cryptography.Csp -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Security.Cryptography.Csp/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Security.Cryptography.Encoding 4.3.0 -## System.Security.Cryptography.Encoding -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Security.Cryptography.Encoding/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Security.Cryptography.OpenSsl 4.3.0 -## System.Security.Cryptography.OpenSsl -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Security.Cryptography.OpenSsl/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY + -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  +Search syntax tips -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Security.Cryptography.Primitives 4.3.0 -## System.Security.Cryptography.Primitives -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Security.Cryptography.Primitives/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. + Provide feedback + -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Security.Cryptography.ProtectedData 4.4.0 -## System.Security.Cryptography.ProtectedData -- Version: 4.4.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Security.Cryptography.ProtectedData/4.4.0) -- License: [MIT](https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) + +We read every piece of feedback, and take your input very seriously. -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors +Include my email address so I can be contacted -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + Cancel -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + Submit feedback -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
-
-System.Security.Cryptography.ProtectedData 4.5.0 -## System.Security.Cryptography.ProtectedData -- Version: 4.5.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Security.Cryptography.ProtectedData/4.5.0) -- License: [MIT](https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors -All rights reserved. + Saved searches + +Use saved searches to filter your results more quickly -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
-
-System.Security.Cryptography.X509Certificates 4.3.0 -## System.Security.Cryptography.X509Certificates -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Security.Cryptography.X509Certificates/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS +Name -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
+Query -
-System.Security.Permissions 4.5.0 -## System.Security.Permissions + To see all available qualifiers, see our documentation. + + -- Version: 4.5.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Security.Permissions/4.5.0) -- License: [MIT](https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors -All rights reserved. + Cancel -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + Create saved search -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
-
-System.Security.Principal.Windows 5.0.0 -## System.Security.Principal.Windows -- Version: 5.0.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://github.com/dotnet/runtime -- Source: [NuGet](https://www.nuget.org/packages/System.Security.Principal.Windows/5.0.0) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + Sign in + -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors + Sign up + +Reseting focus -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
-
-System.Text.Encoding 4.3.0 -## System.Text.Encoding -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Text.Encoding/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + -``` -.NET Library License Terms | .NET +Dismiss alert -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Text.Encoding.CodePages 6.0.0 -## System.Text.Encoding.CodePages -- Version: 6.0.0 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Text.Encoding.CodePages/6.0.0) -- License: [MIT](https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors -All rights reserved. + dotnet + +/ -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +core -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Public -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
-
-System.Text.Encoding.Extensions 4.3.0 -## System.Text.Encoding.Extensions + -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Text.Encoding.Extensions/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) +Notifications + You must be signed in to change notification settings -``` -.NET Library License Terms | .NET + +Fork + 4.9k -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY + -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. + Star + 21.2k -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Text.Encodings.Web 6.0.0 -## System.Text.Encodings.Web -- Version: 6.0.0 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Text.Encodings.Web/6.0.0) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` +Code -
-
-System.Text.Encodings.Web 8.0.0 -## System.Text.Encodings.Web -- Version: 8.0.0 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Text.Encodings.Web/8.0.0) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) -``` -The MIT License (MIT) +Issues +310 -Copyright (c) .NET Foundation and Contributors -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
+Pull requests +3 -
-System.Text.Json 6.0.9 -## System.Text.Json -- Version: 6.0.9 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Text.Json/6.0.9) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) -``` -The MIT License (MIT) +Discussions -Copyright (c) .NET Foundation and Contributors -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. ```
-System.Text.Json 8.0.0 +Microsoft.Win32.Registry 5.0.0 -## System.Text.Json +## Microsoft.Win32.Registry -- Version: 8.0.0 +- Version: 5.0.0 - Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Text.Json/8.0.0) +- Owners: microsoft,dotnetframework +- Project URL: https://github.com/dotnet/runtime +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Win32.Registry/5.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -22399,435 +8728,97026 @@ SOFTWARE.
-System.Text.RegularExpressions 4.3.0 +Minio 6.0.2 -## System.Text.RegularExpressions +## Minio -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Text.RegularExpressions/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) +- Version: 6.0.2 +- Authors: MinIO, Inc. +- Project URL: https://github.com/minio/minio-dotnet +- Source: [NuGet](https://www.nuget.org/packages/Minio/6.0.2) +- License: [Apache-2.0](https://github.com/minio/minio-dotnet/raw/master/LICENSE) ``` -.NET Library License Terms | .NET +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + 1. Definitions. + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. -MICROSOFT SOFTWARE LICENSE -TERMS + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. -MICROSOFT .NET -LIBRARY + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. -If -you comply with these license terms, you have the rights below. + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. ``` -
+
+ + +
+Monai.Deploy.Messaging 2.0.4 + +## Monai.Deploy.Messaging + +- Version: 2.0.4 +- Authors: MONAI Consortium +- Project URL: https://github.com/Project-MONAI/monai-deploy-messaging +- Source: [NuGet](https://www.nuget.org/packages/Monai.Deploy.Messaging/2.0.4) +- License: [Apache-2.0](https://github.com/Project-MONAI/monai-deploy-messaging/raw/main/LICENSE) + + +``` +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +--- + +Copyright (c) MONAI Consortium. All rights reserved. +Licensed under the [Apache-2.0](LICENSE) license. + +This software uses the Microsoft .NET 6.0 library, and the use of this software is subject to the [Microsoft software license terms](https://dotnet.microsoft.com/en-us/dotnet_library_license.htm). + +By downloading this software, you agree to the license terms & all licenses listed on the [third-party licenses](third-party-licenses.md) page. +``` + +
+ + +
+Monai.Deploy.Messaging.RabbitMQ 2.0.4 + +## Monai.Deploy.Messaging.RabbitMQ + +- Version: 2.0.4 +- Authors: MONAI Consortium +- Project URL: https://github.com/Project-MONAI/monai-deploy-messaging +- Source: [NuGet](https://www.nuget.org/packages/Monai.Deploy.Messaging.RabbitMQ/2.0.4) +- License: [Apache-2.0](https://github.com/Project-MONAI/monai-deploy-messaging/raw/main/LICENSE) + + +``` +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +--- + +Copyright (c) MONAI Consortium. All rights reserved. +Licensed under the [Apache-2.0](LICENSE) license. + +This software uses the Microsoft .NET 6.0 library, and the use of this software is subject to the [Microsoft software license terms](https://dotnet.microsoft.com/en-us/dotnet_library_license.htm). + +By downloading this software, you agree to the license terms & all licenses listed on the [third-party licenses](third-party-licenses.md) page. +``` + +
+ + +
+Monai.Deploy.Security 1.0.1 + +## Monai.Deploy.Security + +- Version: 1.0.1 +- Authors: MONAI Consortium +- Project URL: https://github.com/Project-MONAI/monai-deploy-security +- Source: [NuGet](https://www.nuget.org/packages/Monai.Deploy.Security/1.0.1) +- License: [Apache-2.0](https://github.com/Project-MONAI/monai-deploy-security/raw/develop/LICENSE) + + +``` +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +--- + +Copyright (c) MONAI Consortium. All rights reserved. +Licensed under the [Apache-2.0](LICENSE) license. + +This software uses the Microsoft .NET 6.0 library, and the use of this software is subject to the [Microsoft software license terms](https://dotnet.microsoft.com/en-us/dotnet_library_license.htm). + +By downloading this software, you agree to the license terms & all licenses listed on the [third-party licenses](third-party-licenses.md) page. +``` + +
+ + +
+Monai.Deploy.Storage 1.0.2 + +## Monai.Deploy.Storage + +- Version: 1.0.2 +- Authors: MONAI Consortium +- Project URL: https://github.com/Project-MONAI/monai-deploy-storage +- Source: [NuGet](https://www.nuget.org/packages/Monai.Deploy.Storage/1.0.2) +- License: [Apache-2.0](https://github.com/Project-MONAI/monai-deploy-storage/raw/main/LICENSE) + + +``` +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +--- + +Copyright (c) MONAI Consortium. All rights reserved. +Licensed under the [Apache-2.0](LICENSE) license. + +This software uses the Microsoft .NET 6.0 library, and the use of this software is subject to the [Microsoft software license terms](https://dotnet.microsoft.com/en-us/dotnet_library_license.htm). + +By downloading this software, you agree to the license terms & all licenses listed on the [third-party licenses](third-party-licenses.md) page. +``` + +
+ + +
+Monai.Deploy.Storage.MinIO 1.0.2 + +## Monai.Deploy.Storage.MinIO + +- Version: 1.0.2 +- Authors: MONAI Consortium +- Project URL: https://github.com/Project-MONAI/monai-deploy-storage +- Source: [NuGet](https://www.nuget.org/packages/Monai.Deploy.Storage.MinIO/1.0.2) +- License: [Apache-2.0](https://github.com/Project-MONAI/monai-deploy-storage/raw/main/LICENSE) + + +``` +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +--- + +Copyright (c) MONAI Consortium. All rights reserved. +Licensed under the [Apache-2.0](LICENSE) license. + +This software uses the Microsoft .NET 6.0 library, and the use of this software is subject to the [Microsoft software license terms](https://dotnet.microsoft.com/en-us/dotnet_library_license.htm). + +By downloading this software, you agree to the license terms & all licenses listed on the [third-party licenses](third-party-licenses.md) page. +``` + +
+ + +
+Monai.Deploy.Storage.S3Policy 1.0.2 + +## Monai.Deploy.Storage.S3Policy + +- Version: 1.0.2 +- Authors: MONAI Consortium +- Project URL: https://github.com/Project-MONAI/monai-deploy-storage +- Source: [NuGet](https://www.nuget.org/packages/Monai.Deploy.Storage.S3Policy/1.0.2) +- License: [Apache-2.0](https://github.com/Project-MONAI/monai-deploy-storage/raw/main/LICENSE) + + +``` +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +--- + +Copyright (c) MONAI Consortium. All rights reserved. +Licensed under the [Apache-2.0](LICENSE) license. + +This software uses the Microsoft .NET 6.0 library, and the use of this software is subject to the [Microsoft software license terms](https://dotnet.microsoft.com/en-us/dotnet_library_license.htm). + +By downloading this software, you agree to the license terms & all licenses listed on the [third-party licenses](third-party-licenses.md) page. +``` + +
+ + +
+MongoDB.Bson 2.30.0 + +## MongoDB.Bson + +- Version: 2.30.0 +- Authors: MongoDB Inc. +- Project URL: https://www.mongodb.com/docs/drivers/csharp/ +- Source: [NuGet](https://www.nuget.org/packages/MongoDB.Bson/2.30.0) +- License: [Apache-2.0](https://raw.githubusercontent.com/mongodb/mongo-csharp-driver/master/LICENSE.md) + + +``` +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +``` + +
+ + +
+MongoDB.Driver 2.30.0 + +## MongoDB.Driver + +- Version: 2.30.0 +- Authors: MongoDB Inc. +- Project URL: https://www.mongodb.com/docs/drivers/csharp/ +- Source: [NuGet](https://www.nuget.org/packages/MongoDB.Driver/2.30.0) +- License: [Apache-2.0](https://raw.githubusercontent.com/mongodb/mongo-csharp-driver/master/LICENSE.md) + + +``` +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +``` + +
+ + +
+MongoDB.Driver.Core 2.30.0 + +## MongoDB.Driver.Core + +- Version: 2.30.0 +- Authors: MongoDB Inc. +- Project URL: https://www.mongodb.com/docs/drivers/csharp/ +- Source: [NuGet](https://www.nuget.org/packages/MongoDB.Driver.Core/2.30.0) +- License: [Apache-2.0](https://raw.githubusercontent.com/mongodb/mongo-csharp-driver/master/LICENSE.md) + + +``` +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +``` + +
+ + +
+MongoDB.Libmongocrypt 1.12.0 + +## MongoDB.Libmongocrypt + +- Version: 1.12.0 +- Authors: MongoDB Inc. +- Project URL: http://www.mongodb.org/display/DOCS/CSharp+Language+Center +- Source: [NuGet](https://www.nuget.org/packages/MongoDB.Libmongocrypt/1.12.0) +- License: [Apache-2.0](https://raw.githubusercontent.com/mongodb/mongo-csharp-driver/master/LICENSE.md) + + +``` +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +``` + +
+ + +
+Mono.TextTemplating 2.2.1 + +## Mono.TextTemplating + +- Version: 2.2.1 +- Authors: mhutch +- Project URL: https://github.com/mono/t4 +- Source: [NuGet](https://www.nuget.org/packages/Mono.TextTemplating/2.2.1) +- License: [MIT](https://github.com/mono/t4/raw/main/LICENSE) + + +``` +Mono.TextTemplating is licensed under the MIT license: + +Copyright (c) 2009-2011 Novell, Inc. (http://www.novell.com) +Copyright (c) 2011-2016 Xamarin Inc. (http://www.xamarin.com) +Copyright (c) Microsoft Corp. (http://www.microsoft.com) +Copyright (c) The contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +``` + +
+ + +
+Moq 4.20.70 + +## Moq + +- Version: 4.20.70 +- Authors: Daniel Cazzulino, kzu +- Project URL: https://github.com/moq/moq +- Source: [NuGet](https://www.nuget.org/packages/Moq/4.20.70) +- License: [BSD 3-Clause License]( https://raw.githubusercontent.com/moq/moq4/main/License.txt) + + +``` +BSD-3-Clause + +Copyright (c) 2007, Clarius Consulting, Manas Technology Solutions, InSTEDD, +and Contributors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the copyright holders nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +``` + +
+ + +
+NETStandard.Library 1.6.1 + +## NETStandard.Library + +- Version: 1.6.1 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/NETStandard.Library/1.6.1) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+NLog 5.4.0 + +## NLog + +- Version: 5.4.0 +- Authors: Jarek Kowalski,Kim Christensen,Julian Verdurmen +- Project URL: https://nlog-project.org/ +- Source: [NuGet](https://www.nuget.org/packages/NLog/5.4.0) +- License: [BSD 3-Clause License](https://github.com/NLog/NLog/raw/dev/LICENSE.txt) + + +``` +Copyright (c) 2004-2024 Jaroslaw Kowalski , Kim Christensen, Julian Verdurmen + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +* Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of Jaroslaw Kowalski nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF +THE POSSIBILITY OF SUCH DAMAGE. +``` + +
+ + +
+NLog.Extensions.Logging 5.4.0 + +## NLog.Extensions.Logging + +- Version: 5.4.0 +- Authors: Julian Verdurmen +- Project URL: https://github.com/NLog/NLog.Extensions.Logging +- Source: [NuGet](https://www.nuget.org/packages/NLog.Extensions.Logging/5.4.0) +- License: [BSD 2-Clause Simplified License](https://github.com/NLog/NLog.Extensions.Logging/raw/master/LICENSE) + + +``` +Copyright (c) 2016, NLog +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +``` + +
+ + +
+NLog.Web.AspNetCore 5.4.0 + +## NLog.Web.AspNetCore + +- Version: 5.4.0 +- Authors: Julian Verdurmen +- Project URL: https://github.com/NLog/NLog.Web +- Source: [NuGet](https://www.nuget.org/packages/NLog.Web.AspNetCore/5.4.0) +- License: [BSD 3-Clause License](https://github.com/NLog/NLog.Web/raw/master/LICENSE) + + +``` +BSD 3-Clause License + +Copyright (c) 2015-2020, Jaroslaw Kowalski , Kim Christensen, Julian Verdurmen +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of NLog nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +``` + +
+ + +
+Newtonsoft.Json 13.0.1 + +## Newtonsoft.Json + +- Version: 13.0.1 +- Authors: James Newton-King +- Project URL: https://www.newtonsoft.com/json +- Source: [NuGet](https://www.nuget.org/packages/Newtonsoft.Json/13.0.1) +- License: [MIT](https://github.com/JamesNK/Newtonsoft.Json/raw/master/LICENSE.md) + + +``` +The MIT License (MIT) + +Copyright (c) 2007 James Newton-King + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +``` + +
+ + +
+Newtonsoft.Json 13.0.3 + +## Newtonsoft.Json + +- Version: 13.0.3 +- Authors: James Newton-King +- Project URL: https://www.newtonsoft.com/json +- Source: [NuGet](https://www.nuget.org/packages/Newtonsoft.Json/13.0.3) +- License: [MIT](https://github.com/JamesNK/Newtonsoft.Json/raw/master/LICENSE.md) + + +``` +The MIT License (MIT) + +Copyright (c) 2007 James Newton-King + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +``` + +
+ + +
+NuGet.Frameworks 6.5.0 + +## NuGet.Frameworks + +- Version: 6.5.0 +- Authors: Microsoft +- Project URL: https://aka.ms/nugetprj +- Source: [NuGet](https://www.nuget.org/packages/NuGet.Frameworks/6.5.0) +- License: [Apache-2.0](https://github.com/NuGet/NuGet.Client/raw/dev/LICENSE.txt) + + +``` +Copyright (c) .NET Foundation and Contributors. + +All rights reserved. + + +Licensed under the Apache License, Version 2.0 (the "License"); you may not use +these files except in compliance with the License. You may obtain a copy of the +License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed +under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +CONDITIONS OF ANY KIND, either express or implied. See the License for the +specific language governing permissions and limitations under the License. +``` + +
+ + +
+Polly 8.4.0 + +## Polly + +- Version: 8.4.0 +- Authors: Michael Wolfenden, App vNext +- Project URL: https://github.com/App-vNext/Polly +- Source: [NuGet](https://www.nuget.org/packages/Polly/8.4.0) +- License: [MIT]( https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+Polly 8.5.2 + +## Polly + +- Version: 8.5.2 +- Authors: Michael Wolfenden, App vNext +- Project URL: https://github.com/App-vNext/Polly +- Source: [NuGet](https://www.nuget.org/packages/Polly/8.5.2) +- License: [MIT]( https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+Polly.Core 8.4.0 + +## Polly.Core + +- Version: 8.4.0 +- Authors: Michael Wolfenden, App vNext +- Project URL: https://github.com/App-vNext/Polly +- Source: [NuGet](https://www.nuget.org/packages/Polly.Core/8.4.0) +- License: [MIT]( https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+Polly.Core 8.5.2 + +## Polly.Core + +- Version: 8.5.2 +- Authors: Michael Wolfenden, App vNext +- Project URL: https://github.com/App-vNext/Polly +- Source: [NuGet](https://www.nuget.org/packages/Polly.Core/8.5.2) +- License: [MIT]( https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+RabbitMQ.Client 6.8.1 + +## RabbitMQ.Client + +- Version: 6.8.1 +- Authors: VMware +- Project URL: https://www.rabbitmq.com/dotnet.html +- Source: [NuGet](https://www.nuget.org/packages/RabbitMQ.Client/6.8.1) +- License: [Apache-2.0](https://github.com/rabbitmq/rabbitmq-dotnet-client/raw/main/LICENSE-APACHE2) + + +``` +Apache License + Version 2.0, January 2004 + https://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +``` + +
+ + +
+SQLitePCLRaw.bundle_e_sqlite3 2.1.6 + +## SQLitePCLRaw.bundle_e_sqlite3 + +- Version: 2.1.6 +- Authors: Eric Sink +- Source: [NuGet](https://www.nuget.org/packages/SQLitePCLRaw.bundle_e_sqlite3/2.1.6) +- License: [Apache-2.0](https://github.com/ericsink/SQLitePCL.raw/raw/master/LICENSE.TXT) + + +``` +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +``` + +
+ + +
+SQLitePCLRaw.core 2.1.6 + +## SQLitePCLRaw.core + +- Version: 2.1.6 +- Authors: Eric Sink +- Source: [NuGet](https://www.nuget.org/packages/SQLitePCLRaw.core/2.1.6) +- License: [Apache-2.0](https://github.com/ericsink/SQLitePCL.raw/raw/master/LICENSE.TXT) + + +``` +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +``` + +
+ + +
+SQLitePCLRaw.lib.e_sqlite3 2.1.6 + +## SQLitePCLRaw.lib.e_sqlite3 + +- Version: 2.1.6 +- Authors: Eric Sink +- Source: [NuGet](https://www.nuget.org/packages/SQLitePCLRaw.lib.e_sqlite3/2.1.6) +- License: [Apache-2.0](https://github.com/ericsink/SQLitePCL.raw/raw/master/LICENSE.TXT) + + +``` +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +``` + +
+ + +
+SQLitePCLRaw.provider.e_sqlite3 2.1.6 + +## SQLitePCLRaw.provider.e_sqlite3 + +- Version: 2.1.6 +- Authors: Eric Sink +- Source: [NuGet](https://www.nuget.org/packages/SQLitePCLRaw.provider.e_sqlite3/2.1.6) +- License: [Apache-2.0](https://github.com/ericsink/SQLitePCL.raw/raw/master/LICENSE.TXT) + + +``` +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +``` + +
+ + +
+SharpCompress 0.30.1 + +## SharpCompress + +- Version: 0.30.1 +- Authors: Adam Hathcock +- Project URL: https://github.com/adamhathcock/sharpcompress +- Source: [NuGet](https://www.nuget.org/packages/SharpCompress/0.30.1) +- License: [MIT](https://github.com/adamhathcock/sharpcompress/raw/master/LICENSE.txt) + + +``` +The MIT License (MIT) + +Copyright (c) 2014 Adam Hathcock + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +``` + +
+ + +
+Snappier 1.0.0 + +## Snappier + +- Version: 1.0.0 +- Authors: btburnett3 +- Source: [NuGet](https://www.nuget.org/packages/Snappier/1.0.0) +- License: [BSD-3-Clause](https://github.com/brantburnett/Snappier/raw/main/COPYING.txt) + + +``` +Copyright 2011-2024, Google, Inc. and Snappier Authors. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google, Inc., any Snappier authors, nor the +names of its contributors may be used to endorse or promote products +derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +=== + +Some of the benchmark data in testdata/ is licensed differently: + + - fireworks.jpeg is Copyright 2013 Steinar H. Gunderson, and + is licensed under the Creative Commons Attribution 3.0 license + (CC-BY-3.0). See https://creativecommons.org/licenses/by/3.0/ + for more information. + + - kppkn.gtb is taken from the Gaviota chess tablebase set, and + is licensed under the MIT License. See + https://sites.google.com/site/gaviotachessengine/Home/endgame-tablebases-1 + for more information. + + - paper-100k.pdf is an excerpt (bytes 92160 to 194560) from the paper + “Combinatorial Modeling of Chromatin Features Quantitatively Predicts DNA + Replication Timing in _Drosophila_” by Federico Comoglio and Renato Paro, + which is licensed under the CC-BY license. See + http://www.ploscompbiol.org/static/license for more information. + + - alice29.txt, asyoulik.txt, plrabn12.txt and lcet10.txt are from Project + Gutenberg. The first three have expired copyrights and are in the public + domain; the latter does not have expired copyright, but is still in the + public domain according to the license information + (http://www.gutenberg.org/ebooks/53). +``` + +
+ + +
+SpecFlow 3.9.74 + +## SpecFlow + +- Version: 3.9.74 +- Authors: SpecFlow Team +- Owners: SpecFlow Team +- Project URL: https://www.specflow.org/ +- Source: [NuGet](https://www.nuget.org/packages/SpecFlow/3.9.74) +- License: [New BSD License](https://spdx.org/licenses/BSD-3-Clause.html) + + +``` +BSD 3-Clause "New" or "Revised" License | Software Package Data Exchange (SPDX) + + + + + + + + + + + + + +Linux Foundation Collaborative Projects + + + + + + + + + + +Software Package Data Exchange (SPDX) + + + + + + + + + +Home » Licenses +BSD 3-Clause "New" or "Revised" License +false +Full name +BSD 3-Clause "New" or "Revised" License +Short identifier +BSD-3-Clause +Other web pages for this license + + + +https://opensource.org/licenses/BSD-3-Clause + + + +https://www.eclipse.org/org/documents/edl-v10.php + + + + +true +Notes +Note for matching purposes, this license contains a number of equivalent variations, particularly in the third clause. See the XML file for more details. Also note that the Eclipse Distribution License - v 1.0 (EDL 1.0) is a match to BSD-3-Clause, even though it uses a different name. +Text + + + Text in italicized blue is omittable (see Matching Guidelines B.3.5). + License or exception text will match to the text for the specified identifier if it either includes or excludes this omittable text. + + + Text in red is replaceable (see Matching Guidelines B.3.4). + License or exception text will match to the text for the specified identifier if it includes a permitted variant of this replaceable text. + The permitted variants can be found in the corresponding regular expression as shown in title text visible by hovering over the red text. + + + + +Copyright (c) . + +Redistribution and use in source and binary forms, + with or without modification, are permitted provided + that the following conditions are met: + + + 1. + Redistributions of source code must retain the above copyright notice, this list of conditions + and the following disclaimer. + + + 2. + Redistributions in binary form must reproduce the above copyright notice, this list of conditions + and the following disclaimer in the documentation and/or other materials provided with the + distribution. + + + 3. + + Neither the name of the copyright holder nor the names of its contributors may + be used to endorse or promote products derived from this + software without specific prior written permission. + + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED + WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Standard License Header + +There is no standard license header for the license + + + < . ";match=".{0,5000}">> +Redistribution and use in source and binary forms<>, with or without modification, <> permitted provided that the following conditions are met: + + <> Redistributions of <> must retain the <> copyright notice, this list of conditions and the following disclaimer. + <> Redistributions in binary form must reproduce the <> copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + <> <> be used to endorse or promote products derived from this <> without<> specific<> prior written permission. <> +THIS <> IS PROVIDED <> "AS IS" AND ANY <> OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <> BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS <> , EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + + + + + + +© 2018 SPDX Workgroup a Linux Foundation Project. All Rights Reserved. +Linux Foundation is a registered trademark of The Linux Foundation. Linux is a registered trademark of Linus Torvalds. +Please see our privacy policy and terms of use. + + + + + +top of page +``` + +
+ + +
+SpecFlow.Internal.Json 1.0.8 + +## SpecFlow.Internal.Json + +- Version: 1.0.8 +- Authors: SpecFlow Team +- Project URL: https://specflow.org/ +- Source: [NuGet](https://www.nuget.org/packages/SpecFlow.Internal.Json/1.0.8) +- License: [MIT](https://spdx.org/licenses/BSD-3-Clause.html) + + +``` +BSD 3-Clause "New" or "Revised" License | Software Package Data Exchange (SPDX) + + + + + + + + + + + + + +Linux Foundation Collaborative Projects + + + + + + + + + + +Software Package Data Exchange (SPDX) + + + + + + + + + +Home » Licenses +BSD 3-Clause "New" or "Revised" License +false +Full name +BSD 3-Clause "New" or "Revised" License +Short identifier +BSD-3-Clause +Other web pages for this license + + + +https://opensource.org/licenses/BSD-3-Clause + + + +https://www.eclipse.org/org/documents/edl-v10.php + + + + +true +Notes +Note for matching purposes, this license contains a number of equivalent variations, particularly in the third clause. See the XML file for more details. Also note that the Eclipse Distribution License - v 1.0 (EDL 1.0) is a match to BSD-3-Clause, even though it uses a different name. +Text + + + Text in italicized blue is omittable (see Matching Guidelines B.3.5). + License or exception text will match to the text for the specified identifier if it either includes or excludes this omittable text. + + + Text in red is replaceable (see Matching Guidelines B.3.4). + License or exception text will match to the text for the specified identifier if it includes a permitted variant of this replaceable text. + The permitted variants can be found in the corresponding regular expression as shown in title text visible by hovering over the red text. + + + + +Copyright (c) . + +Redistribution and use in source and binary forms, + with or without modification, are permitted provided + that the following conditions are met: + + + 1. + Redistributions of source code must retain the above copyright notice, this list of conditions + and the following disclaimer. + + + 2. + Redistributions in binary form must reproduce the above copyright notice, this list of conditions + and the following disclaimer in the documentation and/or other materials provided with the + distribution. + + + 3. + + Neither the name of the copyright holder nor the names of its contributors may + be used to endorse or promote products derived from this + software without specific prior written permission. + + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED + WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Standard License Header + +There is no standard license header for the license + + + < . ";match=".{0,5000}">> +Redistribution and use in source and binary forms<>, with or without modification, <> permitted provided that the following conditions are met: + + <> Redistributions of <> must retain the <> copyright notice, this list of conditions and the following disclaimer. + <> Redistributions in binary form must reproduce the <> copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + <> <> be used to endorse or promote products derived from this <> without<> specific<> prior written permission. <> +THIS <> IS PROVIDED <> "AS IS" AND ANY <> OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <> BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS <> , EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + + + + + + +© 2018 SPDX Workgroup a Linux Foundation Project. All Rights Reserved. +Linux Foundation is a registered trademark of The Linux Foundation. Linux is a registered trademark of Linus Torvalds. +Please see our privacy policy and terms of use. + + + + + +top of page +``` + +
+ + +
+SpecFlow.Plus.LivingDocPlugin 3.9.57 + +## SpecFlow.Plus.LivingDocPlugin + +- Version: 3.9.57 +- Authors: SpecFlow Team +- Owners: SpecFlow Team +- Project URL: https://docs.specflow.org/projects/specflow-livingdoc +- Source: [NuGet](https://www.nuget.org/packages/SpecFlow.Plus.LivingDocPlugin/3.9.57) +- License: [New BSD License](https://spdx.org/licenses/BSD-3-Clause.html) + + +``` +BSD 3-Clause "New" or "Revised" License | Software Package Data Exchange (SPDX) + + + + + + + + + + + + + +Linux Foundation Collaborative Projects + + + + + + + + + + +Software Package Data Exchange (SPDX) + + + + + + + + + +Home » Licenses +BSD 3-Clause "New" or "Revised" License +false +Full name +BSD 3-Clause "New" or "Revised" License +Short identifier +BSD-3-Clause +Other web pages for this license + + + +https://opensource.org/licenses/BSD-3-Clause + + + +https://www.eclipse.org/org/documents/edl-v10.php + + + + +true +Notes +Note for matching purposes, this license contains a number of equivalent variations, particularly in the third clause. See the XML file for more details. Also note that the Eclipse Distribution License - v 1.0 (EDL 1.0) is a match to BSD-3-Clause, even though it uses a different name. +Text + + + Text in italicized blue is omittable (see Matching Guidelines B.3.5). + License or exception text will match to the text for the specified identifier if it either includes or excludes this omittable text. + + + Text in red is replaceable (see Matching Guidelines B.3.4). + License or exception text will match to the text for the specified identifier if it includes a permitted variant of this replaceable text. + The permitted variants can be found in the corresponding regular expression as shown in title text visible by hovering over the red text. + + + + +Copyright (c) . + +Redistribution and use in source and binary forms, + with or without modification, are permitted provided + that the following conditions are met: + + + 1. + Redistributions of source code must retain the above copyright notice, this list of conditions + and the following disclaimer. + + + 2. + Redistributions in binary form must reproduce the above copyright notice, this list of conditions + and the following disclaimer in the documentation and/or other materials provided with the + distribution. + + + 3. + + Neither the name of the copyright holder nor the names of its contributors may + be used to endorse or promote products derived from this + software without specific prior written permission. + + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED + WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Standard License Header + +There is no standard license header for the license + + + < . ";match=".{0,5000}">> +Redistribution and use in source and binary forms<>, with or without modification, <> permitted provided that the following conditions are met: + + <> Redistributions of <> must retain the <> copyright notice, this list of conditions and the following disclaimer. + <> Redistributions in binary form must reproduce the <> copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + <> <> be used to endorse or promote products derived from this <> without<> specific<> prior written permission. <> +THIS <> IS PROVIDED <> "AS IS" AND ANY <> OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <> BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS <> , EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + + + + + + +© 2018 SPDX Workgroup a Linux Foundation Project. All Rights Reserved. +Linux Foundation is a registered trademark of The Linux Foundation. Linux is a registered trademark of Linus Torvalds. +Please see our privacy policy and terms of use. + + + + + +top of page +``` + +
+ + +
+SpecFlow.Tools.MsBuild.Generation 3.9.74 + +## SpecFlow.Tools.MsBuild.Generation + +- Version: 3.9.74 +- Authors: SpecFlow Team +- Owners: SpecFlow Team +- Project URL: https://www.specflow.org/ +- Source: [NuGet](https://www.nuget.org/packages/SpecFlow.Tools.MsBuild.Generation/3.9.74) +- License: [New BSD License](https://spdx.org/licenses/BSD-3-Clause.html) + + +``` +BSD 3-Clause "New" or "Revised" License | Software Package Data Exchange (SPDX) + + + + + + + + + + + + + +Linux Foundation Collaborative Projects + + + + + + + + + + +Software Package Data Exchange (SPDX) + + + + + + + + + +Home » Licenses +BSD 3-Clause "New" or "Revised" License +false +Full name +BSD 3-Clause "New" or "Revised" License +Short identifier +BSD-3-Clause +Other web pages for this license + + + +https://opensource.org/licenses/BSD-3-Clause + + + +https://www.eclipse.org/org/documents/edl-v10.php + + + + +true +Notes +Note for matching purposes, this license contains a number of equivalent variations, particularly in the third clause. See the XML file for more details. Also note that the Eclipse Distribution License - v 1.0 (EDL 1.0) is a match to BSD-3-Clause, even though it uses a different name. +Text + + + Text in italicized blue is omittable (see Matching Guidelines B.3.5). + License or exception text will match to the text for the specified identifier if it either includes or excludes this omittable text. + + + Text in red is replaceable (see Matching Guidelines B.3.4). + License or exception text will match to the text for the specified identifier if it includes a permitted variant of this replaceable text. + The permitted variants can be found in the corresponding regular expression as shown in title text visible by hovering over the red text. + + + + +Copyright (c) . + +Redistribution and use in source and binary forms, + with or without modification, are permitted provided + that the following conditions are met: + + + 1. + Redistributions of source code must retain the above copyright notice, this list of conditions + and the following disclaimer. + + + 2. + Redistributions in binary form must reproduce the above copyright notice, this list of conditions + and the following disclaimer in the documentation and/or other materials provided with the + distribution. + + + 3. + + Neither the name of the copyright holder nor the names of its contributors may + be used to endorse or promote products derived from this + software without specific prior written permission. + + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED + WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Standard License Header + +There is no standard license header for the license + + + < . ";match=".{0,5000}">> +Redistribution and use in source and binary forms<>, with or without modification, <> permitted provided that the following conditions are met: + + <> Redistributions of <> must retain the <> copyright notice, this list of conditions and the following disclaimer. + <> Redistributions in binary form must reproduce the <> copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + <> <> be used to endorse or promote products derived from this <> without<> specific<> prior written permission. <> +THIS <> IS PROVIDED <> "AS IS" AND ANY <> OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <> BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS <> , EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + + + + + + +© 2018 SPDX Workgroup a Linux Foundation Project. All Rights Reserved. +Linux Foundation is a registered trademark of The Linux Foundation. Linux is a registered trademark of Linus Torvalds. +Please see our privacy policy and terms of use. + + + + + +top of page +``` + +
+ + +
+SpecFlow.xUnit 3.9.74 + +## SpecFlow.xUnit + +- Version: 3.9.74 +- Authors: SpecFlow Team +- Owners: SpecFlow Team +- Project URL: https://www.specflow.org/ +- Source: [NuGet](https://www.nuget.org/packages/SpecFlow.xUnit/3.9.74) +- License: [New BSD License](https://spdx.org/licenses/BSD-3-Clause.html) + + +``` +BSD 3-Clause "New" or "Revised" License | Software Package Data Exchange (SPDX) + + + + + + + + + + + + + +Linux Foundation Collaborative Projects + + + + + + + + + + +Software Package Data Exchange (SPDX) + + + + + + + + + +Home » Licenses +BSD 3-Clause "New" or "Revised" License +false +Full name +BSD 3-Clause "New" or "Revised" License +Short identifier +BSD-3-Clause +Other web pages for this license + + + +https://opensource.org/licenses/BSD-3-Clause + + + +https://www.eclipse.org/org/documents/edl-v10.php + + + + +true +Notes +Note for matching purposes, this license contains a number of equivalent variations, particularly in the third clause. See the XML file for more details. Also note that the Eclipse Distribution License - v 1.0 (EDL 1.0) is a match to BSD-3-Clause, even though it uses a different name. +Text + + + Text in italicized blue is omittable (see Matching Guidelines B.3.5). + License or exception text will match to the text for the specified identifier if it either includes or excludes this omittable text. + + + Text in red is replaceable (see Matching Guidelines B.3.4). + License or exception text will match to the text for the specified identifier if it includes a permitted variant of this replaceable text. + The permitted variants can be found in the corresponding regular expression as shown in title text visible by hovering over the red text. + + + + +Copyright (c) . + +Redistribution and use in source and binary forms, + with or without modification, are permitted provided + that the following conditions are met: + + + 1. + Redistributions of source code must retain the above copyright notice, this list of conditions + and the following disclaimer. + + + 2. + Redistributions in binary form must reproduce the above copyright notice, this list of conditions + and the following disclaimer in the documentation and/or other materials provided with the + distribution. + + + 3. + + Neither the name of the copyright holder nor the names of its contributors may + be used to endorse or promote products derived from this + software without specific prior written permission. + + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED + WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Standard License Header + +There is no standard license header for the license + + + < . ";match=".{0,5000}">> +Redistribution and use in source and binary forms<>, with or without modification, <> permitted provided that the following conditions are met: + + <> Redistributions of <> must retain the <> copyright notice, this list of conditions and the following disclaimer. + <> Redistributions in binary form must reproduce the <> copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + <> <> be used to endorse or promote products derived from this <> without<> specific<> prior written permission. <> +THIS <> IS PROVIDED <> "AS IS" AND ANY <> OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <> BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS <> , EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + + + + + + +© 2018 SPDX Workgroup a Linux Foundation Project. All Rights Reserved. +Linux Foundation is a registered trademark of The Linux Foundation. Linux is a registered trademark of Linus Torvalds. +Please see our privacy policy and terms of use. + + + + + +top of page +``` + +
+ + +
+Swashbuckle.AspNetCore 8.0.0 + +## Swashbuckle.AspNetCore + +- Version: 8.0.0 +- Authors: domaindrivendev +- Owners: domaindrivendev +- Project URL: https://github.com/domaindrivendev/Swashbuckle.AspNetCore +- Source: [NuGet](https://www.nuget.org/packages/Swashbuckle.AspNetCore/8.0.0) +- License: [MIT](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/raw/master/LICENSE) + + +``` +The MIT License (MIT) + +Copyright (c) 2016 Richard Morris + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+Swashbuckle.AspNetCore.Swagger 8.0.0 + +## Swashbuckle.AspNetCore.Swagger + +- Version: 8.0.0 +- Authors: domaindrivendev +- Project URL: https://github.com/domaindrivendev/Swashbuckle.AspNetCore +- Source: [NuGet](https://www.nuget.org/packages/Swashbuckle.AspNetCore.Swagger/8.0.0) +- License: [MIT](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/raw/master/LICENSE) + + +``` +The MIT License (MIT) + +Copyright (c) 2016 Richard Morris + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+Swashbuckle.AspNetCore.SwaggerGen 8.0.0 + +## Swashbuckle.AspNetCore.SwaggerGen + +- Version: 8.0.0 +- Authors: domaindrivendev +- Project URL: https://github.com/domaindrivendev/Swashbuckle.AspNetCore +- Source: [NuGet](https://www.nuget.org/packages/Swashbuckle.AspNetCore.SwaggerGen/8.0.0) +- License: [MIT](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/raw/master/LICENSE) + + +``` +The MIT License (MIT) + +Copyright (c) 2016 Richard Morris + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+Swashbuckle.AspNetCore.SwaggerUI 8.0.0 + +## Swashbuckle.AspNetCore.SwaggerUI + +- Version: 8.0.0 +- Authors: domaindrivendev +- Project URL: https://github.com/domaindrivendev/Swashbuckle.AspNetCore +- Source: [NuGet](https://www.nuget.org/packages/Swashbuckle.AspNetCore.SwaggerUI/8.0.0) +- License: [MIT](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/raw/master/LICENSE) + + +``` +The MIT License (MIT) + +Copyright (c) 2016 Richard Morris + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.AppContext 4.3.0 + +## System.AppContext + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.AppContext/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Buffers 4.3.0 + +## System.Buffers + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Buffers/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Buffers 4.5.1 + +## System.Buffers + +- Version: 4.5.1 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Buffers/4.5.1) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.CodeDom 4.4.0 + +## System.CodeDom + +- Version: 4.4.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.CodeDom/4.4.0) +- License: [MIT]( https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Collections 4.3.0 + +## System.Collections + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Collections/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Collections.Concurrent 4.3.0 + +## System.Collections.Concurrent + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Collections.Concurrent/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Collections.Immutable 6.0.0 + +## System.Collections.Immutable + +- Version: 6.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Collections.Immutable/6.0.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.CommandLine 2.0.0-beta4.22272.1 + +## System.CommandLine + +- Version: 2.0.0-beta4.22272.1 +- Authors: Microsoft +- Project URL: https://github.com/dotnet/command-line-api +- Source: [NuGet](https://www.nuget.org/packages/System.CommandLine/2.0.0-beta4.22272.1) +- License: [MIT](https://github.com/dotnet/command-line-api/raw/main/LICENSE.md) + + +``` +The MIT License (MIT) + +Copyright © .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.CommandLine.Hosting 0.4.0-alpha.22272.1 + +## System.CommandLine.Hosting + +- Version: 0.4.0-alpha.22272.1 +- Authors: Microsoft +- Project URL: https://github.com/dotnet/command-line-api +- Source: [NuGet](https://www.nuget.org/packages/System.CommandLine.Hosting/0.4.0-alpha.22272.1) +- License: [MIT](https://github.com/dotnet/command-line-api/raw/main/LICENSE.md) + + +``` +The MIT License (MIT) + +Copyright © .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.CommandLine.NamingConventionBinder 2.0.0-beta4.22272.1 + +## System.CommandLine.NamingConventionBinder + +- Version: 2.0.0-beta4.22272.1 +- Authors: Microsoft +- Project URL: https://github.com/dotnet/command-line-api +- Source: [NuGet](https://www.nuget.org/packages/System.CommandLine.NamingConventionBinder/2.0.0-beta4.22272.1) +- License: [MIT](https://github.com/dotnet/command-line-api/raw/main/LICENSE.md) + + +``` +The MIT License (MIT) + +Copyright © .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.CommandLine.Rendering 0.4.0-alpha.22272.1 + +## System.CommandLine.Rendering + +- Version: 0.4.0-alpha.22272.1 +- Authors: Microsoft +- Project URL: https://github.com/dotnet/command-line-api +- Source: [NuGet](https://www.nuget.org/packages/System.CommandLine.Rendering/0.4.0-alpha.22272.1) +- License: [MIT](https://github.com/dotnet/command-line-api/raw/main/LICENSE.md) + + +``` +The MIT License (MIT) + +Copyright © .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Composition 6.0.0 + +## System.Composition + +- Version: 6.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Composition/6.0.0) +- License: [MICROSOFT .NET LIBRARY License](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Composition.AttributedModel 6.0.0 + +## System.Composition.AttributedModel + +- Version: 6.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Composition.AttributedModel/6.0.0) +- License: [MICROSOFT .NET LIBRARY License](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Composition.Convention 6.0.0 + +## System.Composition.Convention + +- Version: 6.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Composition.Convention/6.0.0) +- License: [MICROSOFT .NET LIBRARY License](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Composition.Hosting 6.0.0 + +## System.Composition.Hosting + +- Version: 6.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Composition.Hosting/6.0.0) +- License: [MICROSOFT .NET LIBRARY License](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Composition.Runtime 6.0.0 + +## System.Composition.Runtime + +- Version: 6.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Composition.Runtime/6.0.0) +- License: [MICROSOFT .NET LIBRARY License](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Composition.TypedParts 6.0.0 + +## System.Composition.TypedParts + +- Version: 6.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Composition.TypedParts/6.0.0) +- License: [MICROSOFT .NET LIBRARY License](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Configuration.ConfigurationManager 4.4.0 + +## System.Configuration.ConfigurationManager + +- Version: 4.4.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Configuration.ConfigurationManager/4.4.0) +- License: [MIT]( https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Configuration.ConfigurationManager 4.5.0 + +## System.Configuration.ConfigurationManager + +- Version: 4.5.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Configuration.ConfigurationManager/4.5.0) +- License: [MIT]( https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Console 4.3.0 + +## System.Console + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Console/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Diagnostics.Debug 4.3.0 + +## System.Diagnostics.Debug + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Diagnostics.Debug/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Diagnostics.DiagnosticSource 4.3.0 + +## System.Diagnostics.DiagnosticSource + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/4.3.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Diagnostics.DiagnosticSource 6.0.0 + +## System.Diagnostics.DiagnosticSource + +- Version: 6.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/6.0.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Diagnostics.DiagnosticSource 8.0.0 + +## System.Diagnostics.DiagnosticSource + +- Version: 8.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/8.0.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Diagnostics.EventLog 6.0.0 + +## System.Diagnostics.EventLog + +- Version: 6.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Diagnostics.EventLog/6.0.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Diagnostics.Tools 4.3.0 + +## System.Diagnostics.Tools + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Diagnostics.Tools/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Diagnostics.Tracing 4.3.0 + +## System.Diagnostics.Tracing + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Diagnostics.Tracing/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Globalization 4.3.0 + +## System.Globalization + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Globalization/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Globalization.Calendars 4.3.0 + +## System.Globalization.Calendars + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Globalization.Calendars/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Globalization.Extensions 4.3.0 + +## System.Globalization.Extensions + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Globalization.Extensions/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.IO 4.3.0 + +## System.IO + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.IO/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.IO.Abstractions 21.3.1 + +## System.IO.Abstractions + +- Version: 21.3.1 +- Authors: Tatham Oddie & friends +- Project URL: https://github.com/TestableIO/System.IO.Abstractions +- Source: [NuGet](https://www.nuget.org/packages/System.IO.Abstractions/21.3.1) +- License: [MIT](https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) + + +``` +The MIT License (MIT) + +Copyright (c) Tatham Oddie and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.IO.Abstractions.TestingHelpers 21.3.1 + +## System.IO.Abstractions.TestingHelpers + +- Version: 21.3.1 +- Authors: Tatham Oddie & friends +- Project URL: https://github.com/TestableIO/System.IO.Abstractions +- Source: [NuGet](https://www.nuget.org/packages/System.IO.Abstractions.TestingHelpers/21.3.1) +- License: [MIT](https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) + + +``` +The MIT License (MIT) + +Copyright (c) Tatham Oddie and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.IO.Compression 4.3.0 + +## System.IO.Compression + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.IO.Compression/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.IO.Compression.ZipFile 4.3.0 + +## System.IO.Compression.ZipFile + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.IO.Compression.ZipFile/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.IO.FileSystem 4.3.0 + +## System.IO.FileSystem + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.IO.FileSystem/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.IO.FileSystem.Primitives 4.3.0 + +## System.IO.FileSystem.Primitives + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.IO.FileSystem.Primitives/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.IO.Hashing 8.0.0 + +## System.IO.Hashing + +- Version: 8.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.IO.Hashing/8.0.0) +- License: [MIT](https://raw.githubusercontent.com/dotnet/runtime/main/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.IO.Pipelines 6.0.3 + +## System.IO.Pipelines + +- Version: 6.0.3 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.IO.Pipelines/6.0.3) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.IO.Pipelines 8.0.0 + +## System.IO.Pipelines + +- Version: 8.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.IO.Pipelines/8.0.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.IdentityModel.Tokens.Jwt 7.1.2 + +## System.IdentityModel.Tokens.Jwt + +- Version: 7.1.2 +- Authors: Microsoft +- Project URL: https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet +- Source: [NuGet](https://www.nuget.org/packages/System.IdentityModel.Tokens.Jwt/7.1.2) +- License: [MIT](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) + + +``` +The MIT License (MIT) + +Copyright (c) Microsoft Corporation + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Linq 4.3.0 + +## System.Linq + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Linq/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Linq.Async 6.0.1 + +## System.Linq.Async + +- Version: 6.0.1 +- Authors: .NET Foundation and Contributors +- Project URL: https://github.com/dotnet/reactive +- Source: [NuGet](https://www.nuget.org/packages/System.Linq.Async/6.0.1) +- License: [MIT](https://github.com/dotnet/reactive/raw/main/LICENSE) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Linq.Expressions 4.3.0 + +## System.Linq.Expressions + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Linq.Expressions/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Memory 4.5.5 + +## System.Memory + +- Version: 4.5.5 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Memory/4.5.5) +- License: [MIT](https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Net.Http 4.3.0 + +## System.Net.Http + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Net.Http/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Net.Http 4.3.4 + +## System.Net.Http + +- Version: 4.3.4 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Net.Http/4.3.4) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Net.Primitives 4.3.0 + +## System.Net.Primitives + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Net.Primitives/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Net.Sockets 4.3.0 + +## System.Net.Sockets + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Net.Sockets/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.ObjectModel 4.3.0 + +## System.ObjectModel + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.ObjectModel/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Reactive 6.0.0 + +## System.Reactive + +- Version: 6.0.0 +- Authors: .NET Foundation and Contributors +- Project URL: https://github.com/dotnet/reactive +- Source: [NuGet](https://www.nuget.org/packages/System.Reactive/6.0.0) +- License: [MIT](https://github.com/dotnet/reactive/raw/main/LICENSE) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Reflection 4.3.0 + +## System.Reflection + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Reflection/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Reflection.Emit 4.3.0 + +## System.Reflection.Emit + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.Emit/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Reflection.Emit.ILGeneration 4.3.0 + +## System.Reflection.Emit.ILGeneration + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.Emit.ILGeneration/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Reflection.Emit.Lightweight 4.3.0 + +## System.Reflection.Emit.Lightweight + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.Emit.Lightweight/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Reflection.Extensions 4.3.0 + +## System.Reflection.Extensions + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.Extensions/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Reflection.Metadata 1.6.0 + +## System.Reflection.Metadata + +- Version: 1.6.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.Metadata/1.6.0) +- License: [MIT](https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Reflection.Metadata 6.0.1 + +## System.Reflection.Metadata + +- Version: 6.0.1 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.Metadata/6.0.1) +- License: [MIT](https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Reflection.Primitives 4.3.0 + +## System.Reflection.Primitives + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.Primitives/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Reflection.TypeExtensions 4.3.0 + +## System.Reflection.TypeExtensions + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.TypeExtensions/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Resources.ResourceManager 4.3.0 + +## System.Resources.ResourceManager + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Resources.ResourceManager/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Runtime 4.3.0 + +## System.Runtime + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Runtime/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Runtime.CompilerServices.Unsafe 6.0.0 + +## System.Runtime.CompilerServices.Unsafe + +- Version: 6.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe/6.0.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Runtime.Extensions 4.3.0 + +## System.Runtime.Extensions + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Runtime.Extensions/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Runtime.Handles 4.3.0 + +## System.Runtime.Handles + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Runtime.Handles/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Runtime.InteropServices 4.3.0 + +## System.Runtime.InteropServices + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Runtime.InteropServices/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Runtime.InteropServices.RuntimeInformation 4.3.0 + +## System.Runtime.InteropServices.RuntimeInformation + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Runtime.InteropServices.RuntimeInformation/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Runtime.Loader 4.3.0 + +## System.Runtime.Loader + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Runtime.Loader/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Runtime.Numerics 4.3.0 + +## System.Runtime.Numerics + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Runtime.Numerics/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Security.AccessControl 5.0.0 + +## System.Security.AccessControl + +- Version: 5.0.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://github.com/dotnet/runtime +- Source: [NuGet](https://www.nuget.org/packages/System.Security.AccessControl/5.0.0) +- License: [MIT](https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Security.Cryptography.Algorithms 4.3.0 + +## System.Security.Cryptography.Algorithms + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Security.Cryptography.Algorithms/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Security.Cryptography.Cng 4.3.0 + +## System.Security.Cryptography.Cng + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Security.Cryptography.Cng/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Security.Cryptography.Csp 4.3.0 + +## System.Security.Cryptography.Csp + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Security.Cryptography.Csp/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Security.Cryptography.Encoding 4.3.0 + +## System.Security.Cryptography.Encoding + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Security.Cryptography.Encoding/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Security.Cryptography.OpenSsl 4.3.0 + +## System.Security.Cryptography.OpenSsl + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Security.Cryptography.OpenSsl/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Security.Cryptography.Primitives 4.3.0 + +## System.Security.Cryptography.Primitives + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Security.Cryptography.Primitives/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Security.Cryptography.ProtectedData 4.4.0 + +## System.Security.Cryptography.ProtectedData + +- Version: 4.4.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Security.Cryptography.ProtectedData/4.4.0) +- License: [MIT](https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Security.Cryptography.ProtectedData 4.5.0 + +## System.Security.Cryptography.ProtectedData + +- Version: 4.5.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Security.Cryptography.ProtectedData/4.5.0) +- License: [MIT](https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Security.Cryptography.X509Certificates 4.3.0 + +## System.Security.Cryptography.X509Certificates + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Security.Cryptography.X509Certificates/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Security.Permissions 4.5.0 + +## System.Security.Permissions + +- Version: 4.5.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Security.Permissions/4.5.0) +- License: [MIT](https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Security.Principal.Windows 5.0.0 + +## System.Security.Principal.Windows + +- Version: 5.0.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://github.com/dotnet/runtime +- Source: [NuGet](https://www.nuget.org/packages/System.Security.Principal.Windows/5.0.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Text.Encoding 4.3.0 + +## System.Text.Encoding + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Text.Encoding/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Text.Encoding.CodePages 6.0.1 + +## System.Text.Encoding.CodePages + +- Version: 6.0.1 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Text.Encoding.CodePages/6.0.1) +- License: [MIT](https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Text.Encoding.Extensions 4.3.0 + +## System.Text.Encoding.Extensions + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Text.Encoding.Extensions/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Text.Encodings.Web 6.0.0 + +## System.Text.Encodings.Web + +- Version: 6.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Text.Encodings.Web/6.0.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Text.Encodings.Web 8.0.0 + +## System.Text.Encodings.Web + +- Version: 8.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Text.Encodings.Web/8.0.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Text.Json 8.0.5 + +## System.Text.Json + +- Version: 8.0.5 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Text.Json/8.0.5) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Text.RegularExpressions 4.3.0 + +## System.Text.RegularExpressions + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Text.RegularExpressions/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Threading 4.3.0 + +## System.Threading + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Threading/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Threading.Channels 6.0.0 + +## System.Threading.Channels + +- Version: 6.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Threading.Channels/6.0.0) +- License: [MIT]( https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) + + +``` +corefx/LICENSE.TXT at master · dotnet/corefx · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + This repository was archived by the owner on Jan 23, 2023. It is now read-only. + + + + + + + + + + + dotnet + +/ + +corefx + +Public archive + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 17.6k + + + + + + + + + + + + + + +Code + + + + + + + +Pull requests +0 + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files masterBreadcrumbscorefx/LICENSE.TXTCopy path Blame Blame Latest commit HistoryHistory23 lines (18 loc) · 1.09 KB masterBreadcrumbscorefx/LICENSE.TXTTopFile metadata and controlsCodeBlame23 lines (18 loc) · 1.09 KBRaw1234567891011121314151617181920212223The MIT License (MIT) +Copyright (c) .NET Foundation and Contributors +All rights reserved. +Permission is hereby granted, free of charge, to any person obtaining a copyof this software and associated documentation files (the "Software"), to dealin the Software without restriction, including without limitation the rightsto use, copy, modify, merge, publish, distribute, sublicense, and/or sellcopies of the Software, and to permit persons to whom the Software isfurnished to do so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in allcopies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS ORIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THEAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHERLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THESOFTWARE. + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Threading.Channels 7.0.0 + +## System.Threading.Channels + +- Version: 7.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Threading.Channels/7.0.0) +- License: [MIT]( https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) + + +``` +corefx/LICENSE.TXT at master · dotnet/corefx · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + This repository was archived by the owner on Jan 23, 2023. It is now read-only. + + + + + + + + + + + dotnet + +/ + +corefx + +Public archive + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 17.6k + + + + + + + + + + + + + + +Code + + + + + + + +Pull requests +0 + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files masterBreadcrumbscorefx/LICENSE.TXTCopy path Blame Blame Latest commit HistoryHistory23 lines (18 loc) · 1.09 KB masterBreadcrumbscorefx/LICENSE.TXTTopFile metadata and controlsCodeBlame23 lines (18 loc) · 1.09 KBRaw1234567891011121314151617181920212223The MIT License (MIT) +Copyright (c) .NET Foundation and Contributors +All rights reserved. +Permission is hereby granted, free of charge, to any person obtaining a copyof this software and associated documentation files (the "Software"), to dealin the Software without restriction, including without limitation the rightsto use, copy, modify, merge, publish, distribute, sublicense, and/or sellcopies of the Software, and to permit persons to whom the Software isfurnished to do so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in allcopies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS ORIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THEAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHERLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THESOFTWARE. + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Threading.Channels 8.0.0 + +## System.Threading.Channels + +- Version: 8.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Threading.Channels/8.0.0) +- License: [MIT]( https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) + + +``` +corefx/LICENSE.TXT at master · dotnet/corefx · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + This repository was archived by the owner on Jan 23, 2023. It is now read-only. + + + + + + + + + + + dotnet + +/ + +corefx + +Public archive + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 17.6k + + + + + + + + + + + + + + +Code + + + + + + + +Pull requests +0 + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files masterBreadcrumbscorefx/LICENSE.TXTCopy path Blame Blame Latest commit HistoryHistory23 lines (18 loc) · 1.09 KB masterBreadcrumbscorefx/LICENSE.TXTTopFile metadata and controlsCodeBlame23 lines (18 loc) · 1.09 KBRaw1234567891011121314151617181920212223The MIT License (MIT) +Copyright (c) .NET Foundation and Contributors +All rights reserved. +Permission is hereby granted, free of charge, to any person obtaining a copyof this software and associated documentation files (the "Software"), to dealin the Software without restriction, including without limitation the rightsto use, copy, modify, merge, publish, distribute, sublicense, and/or sellcopies of the Software, and to permit persons to whom the Software isfurnished to do so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in allcopies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS ORIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THEAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHERLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THESOFTWARE. + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Threading.Tasks 4.3.0 + +## System.Threading.Tasks + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Threading.Tasks/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Threading.Tasks.Extensions 4.3.0 + +## System.Threading.Tasks.Extensions + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Threading.Tasks.Extensions/4.3.0) +- License: [MIT](https://dotnet.microsoft.com/en-us/dotnet_library_license.htm) + + +``` +.NET Library License Terms | .NET + + + + +MICROSOFT SOFTWARE LICENSE +TERMS + +MICROSOFT .NET +LIBRARY + +These +license terms are an agreement between you and Microsoft Corporation (or based +on where you live, one of its affiliates). They apply to the software named +above. The terms also apply to any Microsoft services or updates for the +software, except to the extent those have different terms. + +If +you comply with these license terms, you have the rights below. + +1.    INSTALLATION AND USE RIGHTS. +You may +install and use any number of copies of the software to develop and test your applications.  + +2.    +THIRD PARTY COMPONENTS. The software may include third party components with +separate legal notices or governed by other agreements, as may be described in +the ThirdPartyNotices file(s) accompanying the software. +3.    +ADDITIONAL LICENSING +REQUIREMENTS AND/OR USE RIGHTS. +a.     +DISTRIBUTABLE +CODE.  The software is +comprised of Distributable Code. “Distributable Code” is code that you are +permitted to distribute in applications you develop if you comply with the +terms below. +i.      Right to Use and Distribute. +·        +You may copy and distribute the object code form of the software. +·        +Third Party Distribution. You may permit distributors of your applications +to copy and distribute the Distributable Code as part of those applications. +ii.     Distribution Requirements. For any +Distributable Code you distribute, you must +·        +use the Distributable Code in your applications and not as a +standalone distribution; +·        +require distributors and external end users to agree to terms that +protect it at least as much as this agreement; and +·        +indemnify, defend, and hold harmless Microsoft from any claims, +including attorneys’ fees, related to the distribution or use of your applications, +except to the extent that any claim is based solely on the unmodified Distributable +Code. +iii.   Distribution Restrictions. You may not +·        +use Microsoft’s trademarks in your applications’ names or in a way +that suggests your applications come from or are endorsed by Microsoft; or +·        +modify or distribute the source code of any Distributable Code so +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or +distribution of code, that (i) it be disclosed or distributed in source code +form; or (ii) others have the right to modify it. +4.    +DATA. +a.     +Data Collection. The software may collect +information about you and your use of the software, and send that to Microsoft. +Microsoft may use this information to provide services and improve our products +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and +Microsoft to collect data from users of your applications. If you use +these features, you must comply with applicable law, including providing +appropriate notices to users of your applications together with Microsoft’s +privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data +collection and its use from the software documentation and our privacy +statement. Your use of the software operates as your consent to these +practices. +b.    +Processing of Personal Data. To the extent Microsoft is a +processor or subprocessor of personal data in connection with the software, +Microsoft makes the commitments in the European Union General Data Protection +Regulation Terms of the Online Services Terms to all customers effective May +25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. +5.    +Scope of +License. The software is licensed, not sold. This agreement +only gives you some rights to use the software. Microsoft reserves all other +rights. Unless applicable law gives you more rights despite this limitation, +you may use the software only as expressly permitted in this agreement. In +doing so, you must comply with any technical limitations in the software that +only allow you to use it in certain ways. You may not +·        +work around any technical +limitations in the software; +·        +reverse engineer, decompile or +disassemble the software, or otherwise attempt to derive the source code for +the software, except and to the extent required by third party licensing terms +governing use of certain open source components that may be included in the +software; +·        +remove, minimize, block or modify +any notices of Microsoft or its suppliers in the software; +·        +use the software in any way that +is against the law; or +·        +share, publish, rent or lease the +software, provide the software as a stand-alone offering for others to use, or +transfer the software or this agreement to any third party. +6.    +Export +Restrictions. You must comply with all domestic and international +export laws and regulations that apply to the software, which include +restrictions on destinations, end users, and end use. For further information +on export restrictions, visit www.microsoft.com/exporting. +7.    +SUPPORT +SERVICES. Because this software is “as is,” we may not provide +support services for it. +8.    +Entire +Agreement. This +agreement, and the terms for supplements, updates, Internet-based services and +support services that you use, are the entire agreement for the software and +support services. +9.    Applicable Law.  If you acquired the software in the United States, Washington law +applies to interpretation of and claims for breach of this agreement, and the +laws of the state where you live apply to all other claims. If you acquired the +software in any other country, its laws apply. +10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You +may have other rights, including consumer rights, under the laws of your state +or country. Separate and apart from your relationship with Microsoft, you may +also have rights with respect to the party from which you acquired the +software. This agreement does not change those other rights if the laws of your +state or country do not permit it to do so. For example, if you acquired the +software in one of the below regions, or mandatory country law applies, then +the following provisions apply to you: +a)    Australia. You have statutory guarantees under the Australian Consumer +Law and nothing in this agreement is intended to affect those rights. +b)    Canada. If you acquired this software in Canada, you may stop +receiving updates by turning off the automatic update feature, disconnecting +your device from the Internet (if and when you re-connect to the Internet, +however, the software will resume checking for and installing updates), or uninstalling +the software. The product documentation, if any, may also specify how to turn +off updates for your specific device or software. +c)    Germany and Austria. +(i)        Warranty. The software will perform +substantially as described in any Microsoft materials that accompany it. +However, Microsoft gives no contractual guarantee in relation to the software. +(ii)       Limitation of Liability. In case of +intentional conduct, gross negligence, claims based on the Product Liability +Act, as well as in case of death or personal or physical injury, Microsoft is +liable according to the statutory law. +Subject to the foregoing clause (ii), Microsoft will only +be liable for slight negligence if Microsoft is in breach of such material +contractual obligations, the fulfillment of which facilitate the due +performance of this agreement, the breach of which would endanger the purpose +of this agreement and the compliance with which a party may constantly trust in +(so-called "cardinal obligations"). In other cases of slight negligence, +Microsoft will not be liable for slight negligence +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK +OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. +TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NON-INFRINGEMENT. +12. +Limitation +on and Exclusion of Remedies and Damages. YOU +CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. +$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST +PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. +This limitation applies to (a) +anything related to the software, services, content (including code) on third +party Internet sites, or third party applications; and (b) claims for breach of +contract, breach of warranty, guarantee or condition, strict liability, +negligence, or other tort to the extent permitted by applicable law. +It +also applies even if Microsoft knew or should have known about the possibility +of the damages. The above limitation or exclusion may not apply to you because +your state or country may not allow the exclusion or limitation of incidental, +consequential or other damages. +``` + +
+ + +
+System.Threading.Tasks.Extensions 4.5.4 + +## System.Threading.Tasks.Extensions + +- Version: 4.5.4 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Threading.Tasks.Extensions/4.5.4) +- License: [MIT](https://dotnet.microsoft.com/en-us/dotnet_library_license.htm) + + +``` +.NET Library License Terms | .NET + + + + +MICROSOFT SOFTWARE LICENSE +TERMS + +MICROSOFT .NET +LIBRARY + +These +license terms are an agreement between you and Microsoft Corporation (or based +on where you live, one of its affiliates). They apply to the software named +above. The terms also apply to any Microsoft services or updates for the +software, except to the extent those have different terms. + +If +you comply with these license terms, you have the rights below. + +1.    INSTALLATION AND USE RIGHTS. +You may +install and use any number of copies of the software to develop and test your applications.  + +2.    +THIRD PARTY COMPONENTS. The software may include third party components with +separate legal notices or governed by other agreements, as may be described in +the ThirdPartyNotices file(s) accompanying the software. +3.    +ADDITIONAL LICENSING +REQUIREMENTS AND/OR USE RIGHTS. +a.     +DISTRIBUTABLE +CODE.  The software is +comprised of Distributable Code. “Distributable Code” is code that you are +permitted to distribute in applications you develop if you comply with the +terms below. +i.      Right to Use and Distribute. +·        +You may copy and distribute the object code form of the software. +·        +Third Party Distribution. You may permit distributors of your applications +to copy and distribute the Distributable Code as part of those applications. +ii.     Distribution Requirements. For any +Distributable Code you distribute, you must +·        +use the Distributable Code in your applications and not as a +standalone distribution; +·        +require distributors and external end users to agree to terms that +protect it at least as much as this agreement; and +·        +indemnify, defend, and hold harmless Microsoft from any claims, +including attorneys’ fees, related to the distribution or use of your applications, +except to the extent that any claim is based solely on the unmodified Distributable +Code. +iii.   Distribution Restrictions. You may not +·        +use Microsoft’s trademarks in your applications’ names or in a way +that suggests your applications come from or are endorsed by Microsoft; or +·        +modify or distribute the source code of any Distributable Code so +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or +distribution of code, that (i) it be disclosed or distributed in source code +form; or (ii) others have the right to modify it. +4.    +DATA. +a.     +Data Collection. The software may collect +information about you and your use of the software, and send that to Microsoft. +Microsoft may use this information to provide services and improve our products +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and +Microsoft to collect data from users of your applications. If you use +these features, you must comply with applicable law, including providing +appropriate notices to users of your applications together with Microsoft’s +privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data +collection and its use from the software documentation and our privacy +statement. Your use of the software operates as your consent to these +practices. +b.    +Processing of Personal Data. To the extent Microsoft is a +processor or subprocessor of personal data in connection with the software, +Microsoft makes the commitments in the European Union General Data Protection +Regulation Terms of the Online Services Terms to all customers effective May +25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. +5.    +Scope of +License. The software is licensed, not sold. This agreement +only gives you some rights to use the software. Microsoft reserves all other +rights. Unless applicable law gives you more rights despite this limitation, +you may use the software only as expressly permitted in this agreement. In +doing so, you must comply with any technical limitations in the software that +only allow you to use it in certain ways. You may not +·        +work around any technical +limitations in the software; +·        +reverse engineer, decompile or +disassemble the software, or otherwise attempt to derive the source code for +the software, except and to the extent required by third party licensing terms +governing use of certain open source components that may be included in the +software; +·        +remove, minimize, block or modify +any notices of Microsoft or its suppliers in the software; +·        +use the software in any way that +is against the law; or +·        +share, publish, rent or lease the +software, provide the software as a stand-alone offering for others to use, or +transfer the software or this agreement to any third party. +6.    +Export +Restrictions. You must comply with all domestic and international +export laws and regulations that apply to the software, which include +restrictions on destinations, end users, and end use. For further information +on export restrictions, visit www.microsoft.com/exporting. +7.    +SUPPORT +SERVICES. Because this software is “as is,” we may not provide +support services for it. +8.    +Entire +Agreement. This +agreement, and the terms for supplements, updates, Internet-based services and +support services that you use, are the entire agreement for the software and +support services. +9.    Applicable Law.  If you acquired the software in the United States, Washington law +applies to interpretation of and claims for breach of this agreement, and the +laws of the state where you live apply to all other claims. If you acquired the +software in any other country, its laws apply. +10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You +may have other rights, including consumer rights, under the laws of your state +or country. Separate and apart from your relationship with Microsoft, you may +also have rights with respect to the party from which you acquired the +software. This agreement does not change those other rights if the laws of your +state or country do not permit it to do so. For example, if you acquired the +software in one of the below regions, or mandatory country law applies, then +the following provisions apply to you: +a)    Australia. You have statutory guarantees under the Australian Consumer +Law and nothing in this agreement is intended to affect those rights. +b)    Canada. If you acquired this software in Canada, you may stop +receiving updates by turning off the automatic update feature, disconnecting +your device from the Internet (if and when you re-connect to the Internet, +however, the software will resume checking for and installing updates), or uninstalling +the software. The product documentation, if any, may also specify how to turn +off updates for your specific device or software. +c)    Germany and Austria. +(i)        Warranty. The software will perform +substantially as described in any Microsoft materials that accompany it. +However, Microsoft gives no contractual guarantee in relation to the software. +(ii)       Limitation of Liability. In case of +intentional conduct, gross negligence, claims based on the Product Liability +Act, as well as in case of death or personal or physical injury, Microsoft is +liable according to the statutory law. +Subject to the foregoing clause (ii), Microsoft will only +be liable for slight negligence if Microsoft is in breach of such material +contractual obligations, the fulfillment of which facilitate the due +performance of this agreement, the breach of which would endanger the purpose +of this agreement and the compliance with which a party may constantly trust in +(so-called "cardinal obligations"). In other cases of slight negligence, +Microsoft will not be liable for slight negligence +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK +OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. +TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NON-INFRINGEMENT. +12. +Limitation +on and Exclusion of Remedies and Damages. YOU +CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. +$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST +PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. +This limitation applies to (a) +anything related to the software, services, content (including code) on third +party Internet sites, or third party applications; and (b) claims for breach of +contract, breach of warranty, guarantee or condition, strict liability, +negligence, or other tort to the extent permitted by applicable law. +It +also applies even if Microsoft knew or should have known about the possibility +of the damages. The above limitation or exclusion may not apply to you because +your state or country may not allow the exclusion or limitation of incidental, +consequential or other damages. +``` + +
+ + +
+System.Threading.Timer 4.3.0 + +## System.Threading.Timer + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Threading.Timer/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Xml.ReaderWriter 4.3.0 + +## System.Xml.ReaderWriter + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Xml.ReaderWriter/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+System.Xml.XDocument 4.3.0 + +## System.Xml.XDocument + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Xml.XDocument/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+TestableIO.System.IO.Abstractions 21.3.1 + +## TestableIO.System.IO.Abstractions + +- Version: 21.3.1 +- Authors: Tatham Oddie & friends +- Project URL: https://github.com/TestableIO/System.IO.Abstractions +- Source: [NuGet](https://www.nuget.org/packages/TestableIO.System.IO.Abstractions/21.3.1) +- License: [MIT](https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) + + +``` +The MIT License (MIT) + +Copyright (c) Tatham Oddie and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+TestableIO.System.IO.Abstractions.TestingHelpers 21.3.1 + +## TestableIO.System.IO.Abstractions.TestingHelpers + +- Version: 21.3.1 +- Authors: Tatham Oddie & friends +- Project URL: https://github.com/TestableIO/System.IO.Abstractions +- Source: [NuGet](https://www.nuget.org/packages/TestableIO.System.IO.Abstractions.TestingHelpers/21.3.1) +- License: [MIT](https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) + + +``` +The MIT License (MIT) + +Copyright (c) Tatham Oddie and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+TestableIO.System.IO.Abstractions.Wrappers 21.3.1 + +## TestableIO.System.IO.Abstractions.Wrappers + +- Version: 21.3.1 +- Authors: Tatham Oddie & friends +- Project URL: https://github.com/TestableIO/System.IO.Abstractions +- Source: [NuGet](https://www.nuget.org/packages/TestableIO.System.IO.Abstractions.Wrappers/21.3.1) +- License: [MIT](https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) + + +``` +The MIT License (MIT) + +Copyright (c) Tatham Oddie and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+Validation 2.4.18 + +## Validation + +- Version: 2.4.18 +- Authors: Andrew Arnott +- Owners: Andrew Arnott +- Project URL: http://github.com/aarnott/Validation +- Source: [NuGet](https://www.nuget.org/packages/Validation/2.4.18) +- License: [Microsoft Public License]( https://raw.githubusercontent.com/AArnott/Validation/69e6a2c4f3/LICENSE.txt) + + +``` +Microsoft Public License (MS-PL) +This license governs use of the accompanying software. If you use the software, you +accept this license. If you do not accept the license, do not use the software. + +1. Definitions +The terms "reproduce," "reproduction," "derivative works," and "distribution" have the +same meaning here as under U.S. copyright law. +A "contribution" is the original software, or any additions or changes to the software. +A "contributor" is any person that distributes its contribution under this license. +"Licensed patents" are a contributor's patent claims that read directly on its contribution. + +2. Grant of Rights +(A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create. +(B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software. + +3. Conditions and Limitations +(A) No Trademark License- This license does not grant you rights to use any contributors' name, logo, or trademarks. +(B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. +(C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. +(D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license. +(E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. +``` + +
+ + +
+Xunit.SkippableFact 1.3.12 + +## Xunit.SkippableFact + +- Version: 1.3.12 +- Authors: Andrew Arnott +- Owners: Andrew Arnott +- Project URL: https://github.com/AArnott/Xunit.SkippableFact +- Source: [NuGet](https://www.nuget.org/packages/Xunit.SkippableFact/1.3.12) +- License: [Microsoft Public License](https://raw.githubusercontent.com/AArnott/Xunit.SkippableFact/c7f20eaa78/LICENSE.txt) + + +``` +This software is licensed under the Microsoft Public License +http://opensource.org/licenses/ms-pl + +This license governs use of the accompanying software. If you use the software, you +accept this license. If you do not accept the license, do not use the software. + +1. Definitions + The terms "reproduce," "reproduction," "derivative works," and "distribution" have the + same meaning here as under U.S. copyright law. + A "contribution" is the original software, or any additions or changes to the software. + A "contributor" is any person that distributes its contribution under this license. + "Licensed patents" are a contributor's patent claims that read directly on its contribution. + +2. Grant of Rights + (A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create. + (B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software. + +3. Conditions and Limitations + (A) No Trademark License- This license does not grant you rights to use any contributors' name, logo, or trademarks. + (B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. + (C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. + (D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license. + (E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. +``` + +
+ + +
+ZstdSharp.Port 0.7.3 + +## ZstdSharp.Port + +- Version: 0.7.3 +- Authors: Oleg Stepanischev +- Project URL: https://github.com/oleg-st/ZstdSharp +- Source: [NuGet](https://www.nuget.org/packages/ZstdSharp.Port/0.7.3) +- License: [MIT](https://github.com/oleg-st/ZstdSharp/raw/master/LICENSE) + + +``` +MIT License + +Copyright (c) 2021 Oleg Stepanischev + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+coverlet.collector 6.0.4 + +## coverlet.collector + +- Version: 6.0.4 +- Authors: tonerdo +- Project URL: https://github.com/coverlet-coverage/coverlet +- Source: [NuGet](https://www.nuget.org/packages/coverlet.collector/6.0.4) +- License: [MIT](https://github.com/coverlet-coverage/coverlet/raw/master/LICENSE) + + +``` +The MIT License (MIT) + +Copyright (c) 2018 Toni Solarin-Sodara + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+fo-dicom 5.2.1 + +## fo-dicom + +- Version: 5.2.1 +- Authors: fo-dicom contributors +- Project URL: https://github.com/fo-dicom/fo-dicom +- Source: [NuGet](https://www.nuget.org/packages/fo-dicom/5.2.1) +- License: [Microsoft Public License](https://github.com/fo-dicom/fo-dicom/raw/development/License.txt) + + +``` +Fellow Oak DICOM + +Copyright (c) 2012-2021 fo-dicom contributors + +This software is licensed under the Microsoft Public License (MS-PL) + +Microsoft Public License (MS-PL) + +This license governs use of the accompanying software. If you use the software, you +accept this license. If you do not accept the license, do not use the software. + +1. Definitions +The terms "reproduce," "reproduction," "derivative works," and "distribution" have the +same meaning here as under U.S. copyright law. +A "contribution" is the original software, or any additions or changes to the software. +A "contributor" is any person that distributes its contribution under this license. +"Licensed patents" are a contributor's patent claims that read directly on its contribution. + +2. Grant of Rights +(A) Copyright Grant- Subject to the terms of this license, including the license conditions + and limitations in section 3, each contributor grants you a non-exclusive, worldwide, + royalty-free copyright license to reproduce its contribution, prepare derivative works + of its contribution, and distribute its contribution or any derivative works that you create. +(B) Patent Grant- Subject to the terms of this license, including the license conditions and + limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free + license under its licensed patents to make, have made, use, sell, offer for sale, import, + and/or otherwise dispose of its contribution in the software or derivative works of the + contribution in the software. + +3. Conditions and Limitations +(A) No Trademark License- This license does not grant you rights to use any contributors' name, + logo, or trademarks. +(B) If you bring a patent claim against any contributor over patents that you claim are infringed + by the software, your patent license from such contributor to the software ends automatically. +(C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, + and attribution notices that are present in the software. +(D) If you distribute any portion of the software in source code form, you may do so only under this + license by including a complete copy of this license with your distribution. If you distribute + any portion of the software in compiled or object code form, you may only do so under a license + that complies with this license. +(E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express + warranties, guarantees or conditions. You may have additional consumer rights under your local + laws which this license cannot change. To the extent permitted under your local laws, the + contributors exclude the implied warranties of merchantability, fitness for a particular purpose + and non-infringement. + + + +---- libijg (from DCMTK 3.5.4 COPYRIGHT) ---- + +Unless otherwise specified, the DCMTK software package has the +following copyright: + +/* + * Copyright (C) 1994-2004, OFFIS + * + * This software and supporting documentation were developed by + * + * Kuratorium OFFIS e.V. + * Healthcare Information and Communication Systems + * Escherweg 2 + * D-26121 Oldenburg, Germany + * + * THIS SOFTWARE IS MADE AVAILABLE, AS IS, AND OFFIS MAKES NO WARRANTY + * REGARDING THE SOFTWARE, ITS PERFORMANCE, ITS MERCHANTABILITY OR + * FITNESS FOR ANY PARTICULAR USE, FREEDOM FROM ANY COMPUTER DISEASES OR + * ITS CONFORMITY TO ANY SPECIFICATION. THE ENTIRE RISK AS TO QUALITY AND + * PERFORMANCE OF THE SOFTWARE IS WITH THE USER. + * + * Copyright of the software and supporting documentation is, unless + * otherwise stated, owned by OFFIS, and free access is hereby granted as + * a license to use this software, copy this software and prepare + * derivative works based upon this software. However, any distribution + * of this software source code or supporting documentation or derivative + * works (source code and supporting documentation) must include the + * three paragraphs of this copyright notice. + * + */ + +The dcmjpeg sub-package includes an adapted version of the Independent JPEG +Group Toolkit Version 6b, which is contained in dcmjpeg/libijg8, +dcmjpeg/libijg12 and dcmjpeg/libijg16. This toolkit is covered by the +following copyright. The original README file for the Independent JPEG +Group Toolkit is located in dcmjpeg/docs/ijg_readme.txt. + +/* + * The authors make NO WARRANTY or representation, either express or implied, + * with respect to this software, its quality, accuracy, merchantability, or + * fitness for a particular purpose. This software is provided "AS IS", and you, + * its user, assume the entire risk as to its quality and accuracy. + * + * This software is copyright (C) 1991-1998, Thomas G. Lane. + * All Rights Reserved except as specified below. + * + * Permission is hereby granted to use, copy, modify, and distribute this + * software (or portions thereof) for any purpose, without fee, subject to these + * conditions: + * (1) If any part of the source code for this software is distributed, then this + * README file must be included, with this copyright and no-warranty notice + * unaltered; and any additions, deletions, or changes to the original files + * must be clearly indicated in accompanying documentation. + * (2) If only executable code is distributed, then the accompanying + * documentation must state that "this software is based in part on the work of + * the Independent JPEG Group". + * (3) Permission for use of this software is granted only if the user accepts + * full responsibility for any undesirable consequences; the authors accept + * NO LIABILITY for damages of any kind. + * + * These conditions apply to any software derived from or based on the IJG code, + * not just to the unmodified library. If you use our work, you ought to + * acknowledge us. + * + * Permission is NOT granted for the use of any IJG author's name or company name + * in advertising or publicity relating to this software or products derived from + * it. This software may be referred to only as "the Independent JPEG Group's + * software". + * + * We specifically permit and encourage the use of this software as the basis of + * commercial products, provided that all warranty or liability claims are + * assumed by the product vendor. + */ + + + +---- OpenJPEG JPEG 2000 codec (from license.txt) ---- + +/* + * Copyright (c) 2002-2007, Communications and Remote Sensing Laboratory, Universite catholique de Louvain (UCL), Belgium + * Copyright (c) 2002-2007, Professor Benoit Macq + * Copyright (c) 2001-2003, David Janssens + * Copyright (c) 2002-2003, Yannick Verschueren + * Copyright (c) 2003-2007, Francois-Olivier Devaux and Antonin Descampe + * Copyright (c) 2005, Herve Drolon, FreeImage Team + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS' + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + + + +---- CharLS JPEG-LS codec (from License.txt) ---- + +Copyright (c) 2007-2009, Jan de Vaan +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of my employer, nor the names of its contributors may be + used to endorse or promote products derived from this software without + specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + +---- Unity.IO.Compression (from LICENSE.TXT and PATENTS.TXT) ---- + +The MIT License (MIT) + +Copyright (c) Microsoft Corporation + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +Microsoft Patent Promise for .NET Libraries and Runtime Components + +Microsoft Corporation and its affiliates ("Microsoft") promise not to assert +any .NET Patents against you for making, using, selling, offering for sale, +importing, or distributing Covered Code, as part of either a .NET Runtime or +as part of any application designed to run on a .NET Runtime. + +If you file, maintain, or voluntarily participate in any claim in a lawsuit +alleging direct or contributory patent infringement by any Covered Code, or +inducement of patent infringement by any Covered Code, then your rights under +this promise will automatically terminate. + +This promise is not an assurance that (i) any .NET Patents are valid or +enforceable, or (ii) Covered Code does not infringe patents or other +intellectual property rights of any third party. No rights except those +expressly stated in this promise are granted, waived, or received by +Microsoft, whether by implication, exhaustion, estoppel, or otherwise. +This is a personal promise directly from Microsoft to you, and you agree as a +condition of benefiting from it that no Microsoft rights are received from +suppliers, distributors, or otherwise from any other person in connection with +this promise. + +Definitions: + +"Covered Code" means those Microsoft .NET libraries and runtime components as +made available by Microsoft at https://github.com/Microsoft/referencesource. + +".NET Patents" are those patent claims, both currently owned by Microsoft and +acquired in the future, that are necessarily infringed by Covered Code. .NET +Patents do not include any patent claims that are infringed by any Enabling +Technology, that are infringed only as a consequence of modification of +Covered Code, or that are infringed only by the combination of Covered Code +with third party code. + +".NET Runtime" means any compliant implementation in software of (a) all of +the required parts of the mandatory provisions of Standard ECMA-335 – Common +Language Infrastructure (CLI); and (b) if implemented, any additional +functionality in Microsoft's .NET Framework, as described in Microsoft's API +documentation on its MSDN website. For example, .NET Runtimes include +Microsoft's .NET Framework and those portions of the Mono Project compliant +with (a) and (b). + +"Enabling Technology" means underlying or enabling technology that may be +used, combined, or distributed in connection with Microsoft's .NET Framework +or other .NET Runtimes, such as hardware, operating systems, and applications +that run on .NET Framework or other .NET Runtimes. + + + +---- Nito.AsyncEx (from LICENSE.TXT) ---- + +The MIT License (MIT) + +Copyright (c) 2014 StephenCleary + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 + +## runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 + +## runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl + +- Version: 4.3.2 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 + +## runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 + +## runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl + +- Version: 4.3.2 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 + +## runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 + +## runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl + +- Version: 4.3.2 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+runtime.native.System 4.3.0 + +## runtime.native.System + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/runtime.native.System/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+runtime.native.System.IO.Compression 4.3.0 + +## runtime.native.System.IO.Compression + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/runtime.native.System.IO.Compression/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+runtime.native.System.IO.Compression 4.3.2 + +## runtime.native.System.IO.Compression + +- Version: 4.3.2 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/runtime.native.System.IO.Compression/4.3.2) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+runtime.native.System.Net.Http 4.3.0 + +## runtime.native.System.Net.Http + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/runtime.native.System.Net.Http/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+runtime.native.System.Security.Cryptography.Apple 4.3.0 + +## runtime.native.System.Security.Cryptography.Apple + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/runtime.native.System.Security.Cryptography.Apple/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 + +## runtime.native.System.Security.Cryptography.OpenSsl + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/runtime.native.System.Security.Cryptography.OpenSsl/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 + +## runtime.native.System.Security.Cryptography.OpenSsl + +- Version: 4.3.2 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/runtime.native.System.Security.Cryptography.OpenSsl/4.3.2) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 + +## runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 + +## runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl + +- Version: 4.3.2 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 + +## runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 + +## runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl + +- Version: 4.3.2 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple 4.3.0 + +## runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 + +## runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 + +## runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl + +- Version: 4.3.2 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 + +## runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 + +## runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl + +- Version: 4.3.2 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. +``` + +
+ + +
+runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 + +## runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + + +``` +core/license-information.md at main · dotnet/core · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + + + + Nonprofits + + + + + + +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + + + + + + + + + Open Source + + + + + + + + + + + +GitHub Sponsors + Fund open source developers + + + + + + + + + +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + To see all available qualifiers, see our documentation. + + -
-System.Threading 4.3.0 -## System.Threading -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Threading/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET + Cancel + Create saved search -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` + Sign in + -
+ Sign up + +Reseting focus -
-System.Threading.Channels 6.0.0 -## System.Threading.Channels -- Version: 6.0.0 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Threading.Channels/6.0.0) -- License: [MIT]( https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) -``` -corefx/LICENSE.TXT at master · dotnet/corefx · GitHub +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + +Dismiss alert @@ -22846,28 +105766,41 @@ corefx/LICENSE.TXT at master · dotnet/corefx · GitHub + dotnet + +/ +core +Public + +Notifications + You must be signed in to change notification settings + +Fork + 4.9k + + Star + 21.2k -Skip to content @@ -22878,31 +105811,67 @@ Skip to content +Code -Navigation Menu -Toggle navigation +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security - Sign in - + +Insights + + +Additional navigation options + @@ -22911,10 +105880,9 @@ Toggle navigation - Product - + Code @@ -22925,29 +105893,22 @@ Toggle navigation -Actions - Automate any workflow - + Issues -Packages - Host and manage packages - + Pull requests -Security - Find and fix vulnerabilities - @@ -22955,29 +105916,22 @@ Security -Codespaces - Instant dev environments - + Discussions -GitHub Copilot - Write better code with AI - + Actions -Code review - Manage code changes - @@ -22985,8 +105939,69 @@ Code review -Issues - Plan and track work + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. @@ -22995,143 +106010,157 @@ Issues -Discussions - Collaborate outside of code + +Footer + + + + + + + + + © 2025 GitHub, Inc. +Footer navigation -Explore +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact - All features + Manage cookies - Documentation + + Do not share my personal information - GitHub Skills - - Blog - + You can’t perform that action at this time. +``` +
+
+runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 +## runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl - Solutions - +- Version: 4.3.2 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) +``` +core/license-information.md at main · dotnet/core · GitHub -For - Enterprise - - Teams - - Startups - - Education - -By Solution - CI/CD & Automation - - DevOps - - DevSecOps - -Resources - Learning Pathways +Skip to content - - White papers, Ebooks, Webinars - - Customer Stories - +Navigation Menu +Toggle navigation - Partners - + + @@ -23141,7 +106170,21 @@ Resources - Open Source + + + + + Sign in + + + + + + + + + + Product @@ -23152,8 +106195,12 @@ Resources -GitHub Sponsors - Fund open source developers + + + + +GitHub Copilot + Write better code with AI @@ -23162,31 +106209,94 @@ GitHub Sponsors +Security + Find and fix vulnerabilities + -The ReadME Project - GitHub community articles + + + + + + +Actions + Automate any workflow -Repositories - Topics +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features - Trending + Documentation - Collections + + + GitHub Skills @@ -23194,10 +106304,10 @@ Repositories + Blog + - Enterprise - @@ -23207,189 +106317,231 @@ Repositories + Solutions + -Enterprise platform - AI-powered developer platform - +By company size + + + + Enterprises + + + + + + Small and medium teams + + -Available add-ons + Startups + + Nonprofits -Advanced Security - Enterprise-grade security features - + +By use case -GitHub Copilot - Enterprise-grade AI features - + DevSecOps + + DevOps + -Premium Support - Enterprise-grade 24/7 support - + CI/CD + + View all use cases -Pricing + +By industry + Healthcare + -Search or jump to... + Financial services + + Manufacturing + -Search code, repositories, users, issues, pull requests... - + Government + - Search - + View all industries + + View all solutions + + -Clear - + Resources + +Topics + AI + + DevOps + + Security + + Software Development + + View all + +Explore + Learning Pathways + + Events & Webinars + - + Ebooks & Whitepapers + - Search syntax tips - + Customer Stories + + Partners + + Executive Insights + - Provide feedback - + Open Source + - -We read every piece of feedback, and take your input very seriously. -Include my email address so I can be contacted - Cancel - Submit feedback +GitHub Sponsors + Fund open source developers + @@ -23398,46 +106550,46 @@ Include my email address so I can be contacted - Saved searches +The ReadME Project + GitHub community articles -Use saved searches to filter your results more quickly - +Repositories + Topics - + + Trending + -Name + Collections + -Query - To see all available qualifiers, see our documentation. - - + Enterprise + - Cancel - Create saved search @@ -23446,43 +106598,45 @@ Query - Sign in - +Enterprise platform + AI-powered developer platform + - Sign up - +Available add-ons -You signed in with another tab or window. Reload to refresh your session. -You signed out in another tab or window. Reload to refresh your session. -You switched accounts on another tab or window. Reload to refresh your session. - +Advanced Security + Enterprise-grade security features + -Dismiss alert +Copilot for business + Enterprise-grade AI features + - This repository has been archived by the owner on Jan 23, 2023. It is now read-only. - +Premium Support + Enterprise-grade 24/7 support + @@ -23490,45 +106644,36 @@ Dismiss alert - dotnet - -/ +Pricing -corefx -Public archive - -Notifications - You must be signed in to change notification settings - -Fork - 5k +Search or jump to... - - Star - 17.7k - +Search code, repositories, users, issues, pull requests... + + Search + @@ -23540,23 +106685,21 @@ Fork -Code +Clear + -Pull requests -0 -Security @@ -23564,19 +106707,14 @@ Security -Insights - - -Additional navigation options - @@ -23587,7 +106725,6 @@ Additional navigation options - Code @@ -23598,18 +106735,18 @@ Additional navigation options - Pull requests + +Search syntax tips - Security @@ -23619,22 +106756,27 @@ Additional navigation options + Provide feedback + - Insights - + +We read every piece of feedback, and take your input very seriously. +Include my email address so I can be contacted + Cancel + Submit feedback @@ -23643,51 +106785,48 @@ Additional navigation options -Footer + Saved searches + +Use saved searches to filter your results more quickly - © 2024 GitHub, Inc. - -Footer navigation + -Terms -Privacy -Security +Name -Status -Docs -Contact +Query + To see all available qualifiers, see our documentation. + + - Manage cookies - + Cancel - Do not share my personal information - + Create saved search @@ -23696,34 +106835,31 @@ Contact + Sign in + + Sign up + +Reseting focus - You can’t perform that action at this time. -``` -
-
-System.Threading.Channels 7.0.0 +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + -## System.Threading.Channels -- Version: 7.0.0 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Threading.Channels/7.0.0) -- License: [MIT]( https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) +Dismiss alert -``` -corefx/LICENSE.TXT at master · dotnet/corefx · GitHub @@ -23740,23 +106876,37 @@ corefx/LICENSE.TXT at master · dotnet/corefx · GitHub + dotnet + +/ +core +Public + +Notifications + You must be signed in to change notification settings + +Fork + 4.9k + + Star + 21.2k @@ -23769,9 +106919,9 @@ corefx/LICENSE.TXT at master · dotnet/corefx · GitHub -Skip to content +Code @@ -23779,30 +106929,31 @@ Skip to content +Issues +310 -Navigation Menu -Toggle navigation +Pull requests +3 +Discussions - Sign in - - +Actions @@ -23810,26 +106961,27 @@ Toggle navigation +Security - Product - +Insights + + +Additional navigation options -Actions - Automate any workflow - + @@ -23837,19 +106989,14 @@ Actions -Packages - Host and manage packages - + Code -Security - Find and fix vulnerabilities - @@ -23857,9 +107004,7 @@ Security -Codespaces - Instant dev environments - + Issues @@ -23867,19 +107012,14 @@ Codespaces -GitHub Copilot - Write better code with AI - + Pull requests -Code review - Manage code changes - @@ -23887,153 +107027,154 @@ Code review -Issues - Plan and track work - + Discussions -Discussions - Collaborate outside of code - -Explore + Actions - All features - - Documentation - + Security - GitHub Skills - - Blog - + Insights - Solutions - + -For + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: - Enterprise +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT - +More information: +Project copyright guidance +Product distributions +Product distributions use the following license: - Teams +On Linux and macOS: MIT license +On Windows: .NET Library License - +Product distributions include downloadable assets and runtime packs. +More information: +Windows license information. +.NET Asset Licensing Model +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + - Startups - - Education - +Footer -By Solution - CI/CD & Automation - + © 2025 GitHub, Inc. + +Footer navigation - DevOps - +Terms +Privacy - DevSecOps - +Security +Status +Docs -Resources +Contact - Learning Pathways + Manage cookies - White papers, Ebooks, Webinars - + Do not share my personal information - Customer Stories - - - Partners - @@ -24041,22 +107182,31 @@ Resources + You can’t perform that action at this time. +``` +
- Open Source - +
+runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 +## runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) +``` +core/license-information.md at main · dotnet/core · GitHub -GitHub Sponsors - Fund open source developers - @@ -24065,32 +107215,22 @@ GitHub Sponsors -The ReadME Project - GitHub community articles - -Repositories - Topics - - Trending - - Collections - @@ -24098,8 +107238,6 @@ Repositories - Enterprise - @@ -24111,15 +107249,12 @@ Repositories +Skip to content -Enterprise platform - AI-powered developer platform - -Available add-ons @@ -24127,19 +107262,16 @@ Available add-ons -Advanced Security - Enterprise-grade security features - +Navigation Menu +Toggle navigation + -GitHub Copilot - Enterprise-grade AI features - @@ -24147,16 +107279,14 @@ GitHub Copilot -Premium Support - Enterprise-grade 24/7 support - + Sign in + -Pricing @@ -24164,12 +107294,13 @@ Pricing + Product + -Search or jump to... @@ -24177,18 +107308,20 @@ Search or jump to... -Search code, repositories, users, issues, pull requests... - +GitHub Copilot + Write better code with AI + - Search - +Security + Find and fix vulnerabilities + @@ -24196,15 +107329,19 @@ Search code, repositories, users, issues, pull requests... +Actions + Automate any workflow + -Clear - +Codespaces + Instant dev environments + @@ -24212,6 +107349,9 @@ Clear +Issues + Plan and track work + @@ -24219,6 +107359,9 @@ Clear +Code Review + Manage code changes + @@ -24226,6 +107369,9 @@ Clear +Discussions + Collaborate outside of code + @@ -24233,35 +107379,44 @@ Clear +Code Search + Find more, search less + +Explore + All features + + Documentation + - - Search syntax tips - + GitHub Skills + + Blog + @@ -24269,249 +107424,268 @@ Clear - Provide feedback - + Solutions + - -We read every piece of feedback, and take your input very seriously. +By company size -Include my email address so I can be contacted + Enterprises - Cancel + - Submit feedback + Small and medium teams + + Startups + - Saved searches - -Use saved searches to filter your results more quickly + Nonprofits + +By use case + DevSecOps - + + DevOps + -Name + CI/CD + -Query + View all use cases + - To see all available qualifiers, see our documentation. - - +By industry - Cancel - Create saved search + Healthcare + + Financial services + - Sign in - + Manufacturing - Sign up - + + Government + + View all industries + -You signed in with another tab or window. Reload to refresh your session. -You signed out in another tab or window. Reload to refresh your session. -You switched accounts on another tab or window. Reload to refresh your session. - -Dismiss alert + View all solutions + + + Resources + - This repository has been archived by the owner on Jan 23, 2023. It is now read-only. - +Topics + AI + - dotnet - -/ -corefx -Public archive + DevOps + + Security - + -Notifications - You must be signed in to change notification settings - + Software Development -Fork - 5k + + View all - + - Star - 17.7k - +Explore + Learning Pathways + + Events & Webinars + -Code + Ebooks & Whitepapers + + Customer Stories + -Pull requests -0 + Partners + -Security + Executive Insights + -Insights - - + Open Source + -Additional navigation options - +GitHub Sponsors + Fund open source developers + - Code +The ReadME Project + GitHub community articles + +Repositories - Pull requests + Topics + + Trending + + Collections - Security + @@ -24520,33 +107694,39 @@ Additional navigation options + Enterprise + - Insights - +Enterprise platform + AI-powered developer platform + +Available add-ons -Footer +Advanced Security + Enterprise-grade security features + @@ -24554,46 +107734,40 @@ Footer - © 2024 GitHub, Inc. +Copilot for business + Enterprise-grade AI features -Footer navigation - -Terms -Privacy -Security +Premium Support + Enterprise-grade 24/7 support + -Status -Docs -Contact +Pricing - Manage cookies - - Do not share my personal information - +Search or jump to... @@ -24601,37 +107775,30 @@ Contact +Search code, repositories, users, issues, pull requests... + - You can’t perform that action at this time. -``` + Search + -
-
-System.Threading.Channels 8.0.0 -## System.Threading.Channels -- Version: 8.0.0 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Threading.Channels/8.0.0) -- License: [MIT]( https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) -``` -corefx/LICENSE.TXT at master · dotnet/corefx · GitHub +Clear + @@ -24671,7 +107838,6 @@ corefx/LICENSE.TXT at master · dotnet/corefx · GitHub -Skip to content @@ -24681,12 +107847,12 @@ Skip to content + -Navigation Menu +Search syntax tips -Toggle navigation @@ -24697,12 +107863,11 @@ Toggle navigation - Sign in - - + Provide feedback + @@ -24712,13 +107877,16 @@ Toggle navigation + +We read every piece of feedback, and take your input very seriously. +Include my email address so I can be contacted - Product - + Cancel + Submit feedback @@ -24729,9 +107897,9 @@ Toggle navigation -Actions - Automate any workflow + Saved searches +Use saved searches to filter your results more quickly @@ -24739,203 +107907,191 @@ Actions -Packages - Host and manage packages - + -Security - Find and fix vulnerabilities - +Name +Query -Codespaces - Instant dev environments - + To see all available qualifiers, see our documentation. + + -GitHub Copilot - Write better code with AI - + Cancel + Create saved search -Code review - Manage code changes - + Sign in + + Sign up + +Reseting focus -Issues - Plan and track work - +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + -Discussions - Collaborate outside of code - +Dismiss alert -Explore - All features - - Documentation - - GitHub Skills - + dotnet + +/ +core +Public - Blog - + +Notifications + You must be signed in to change notification settings + +Fork + 4.9k - Solutions - + + Star + 21.2k -For - Enterprise - - Teams - - Startups - +Code - Education - +Issues +310 -By Solution - CI/CD & Automation +Pull requests +3 - - DevOps - +Discussions - DevSecOps - +Actions -Resources - Learning Pathways - +Security - White papers, Ebooks, Webinars - +Insights - Customer Stories + - + +Additional navigation options - Partners - + @@ -24945,9 +108101,8 @@ Resources - Open Source - + Code @@ -24956,57 +108111,46 @@ Resources -GitHub Sponsors - Fund open source developers - + Issues -The ReadME Project - GitHub community articles - -Repositories + Pull requests - Topics - - Trending - - Collections - + Discussions - Enterprise - + Actions @@ -25014,14 +108158,11 @@ Repositories -Enterprise platform - AI-powered developer platform - -Available add-ons + Security @@ -25029,41 +108170,59 @@ Available add-ons -Advanced Security - Enterprise-grade security features - + Insights -GitHub Copilot - Enterprise-grade AI features - + -Premium Support - Enterprise-grade 24/7 support - + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT +More information: -Pricing +Project copyright guidance +Product distributions +Product distributions use the following license: +On Linux and macOS: MIT license +On Windows: .NET Library License +Product distributions include downloadable assets and runtime packs. +More information: +Windows license information. +.NET Asset Licensing Model +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + @@ -25071,45 +108230,52 @@ Pricing -Search or jump to... +Footer -Search code, repositories, users, issues, pull requests... - + © 2025 GitHub, Inc. + +Footer navigation - Search - +Terms +Privacy +Security +Status +Docs +Contact -Clear - + Manage cookies + + Do not share my personal information + @@ -25126,13 +108292,27 @@ Clear + You can’t perform that action at this time. +``` +
+
+runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 +## runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl +- Version: 4.3.2 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) +``` +core/license-information.md at main · dotnet/core · GitHub @@ -25150,13 +108330,10 @@ Clear - - Search syntax tips - @@ -25171,8 +108348,6 @@ Clear - Provide feedback - @@ -25182,16 +108357,12 @@ Clear - -We read every piece of feedback, and take your input very seriously. -Include my email address so I can be contacted +Skip to content - Cancel - Submit feedback @@ -25202,46 +108373,42 @@ Include my email address so I can be contacted - Saved searches - -Use saved searches to filter your results more quickly +Navigation Menu +Toggle navigation + - -Name + Sign in + -Query - To see all available qualifiers, see our documentation. - - + Product + - Cancel - Create saved search @@ -25250,29 +108417,31 @@ Query - Sign in - - Sign up - +GitHub Copilot + Write better code with AI + + + +Security + Find and fix vulnerabilities + -You signed in with another tab or window. Reload to refresh your session. -You signed out in another tab or window. Reload to refresh your session. -You switched accounts on another tab or window. Reload to refresh your session. - -Dismiss alert +Actions + Automate any workflow + @@ -25280,7793 +108449,3180 @@ Dismiss alert +Codespaces + Instant dev environments + - This repository has been archived by the owner on Jan 23, 2023. It is now read-only. - +Issues + Plan and track work + - dotnet - -/ -corefx -Public archive +Code Review + Manage code changes + - -Notifications - You must be signed in to change notification settings +Discussions + Collaborate outside of code + - -Fork - 5k - +Code Search + Find more, search less + - Star - 17.7k - +Explore + All features + + Documentation + -Code + GitHub Skills + + Blog -Pull requests -0 + -Security + Solutions + -Insights - +By company size - -Additional navigation options + Enterprises + - + Small and medium teams + + Startups + - Code + Nonprofits + +By use case + DevSecOps + - Pull requests + DevOps + + CI/CD + - Security + View all use cases + +By industry - Insights + Healthcare + + Financial services - + + Manufacturing + + Government + + View all industries + -Footer + View all solutions + + - © 2024 GitHub, Inc. - + Resources + -Footer navigation -Terms -Privacy +Topics -Security + AI -Status + -Docs + DevOps -Contact + + Security - Manage cookies + Software Development - - Do not share my personal information + View all + +Explore + Learning Pathways + - You can’t perform that action at this time. -``` -
-
-System.Threading.Tasks 4.3.0 + Events & Webinars -## System.Threading.Tasks + -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Threading.Tasks/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET + Ebooks & Whitepapers + -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. + Customer Stories -If -you comply with these license terms, you have the rights below. + -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
+ Partners + + -
-System.Threading.Tasks.Extensions 4.3.0 -## System.Threading.Tasks.Extensions -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Threading.Tasks.Extensions/4.3.0) -- License: [MIT](https://dotnet.microsoft.com/en-us/dotnet_library_license.htm) + Executive Insights -``` -.NET Library License Terms | .NET + -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  + Open Source + -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Threading.Tasks.Extensions 4.5.4 -## System.Threading.Tasks.Extensions -- Version: 4.5.4 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Threading.Tasks.Extensions/4.5.4) -- License: [MIT](https://dotnet.microsoft.com/en-us/dotnet_library_license.htm) -``` -.NET Library License Terms | .NET +GitHub Sponsors + Fund open source developers + -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
+The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + -
-System.Threading.Timer 4.3.0 -## System.Threading.Timer -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Threading.Timer/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET +Clear + -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Xml.ReaderWriter 4.3.0 -## System.Xml.ReaderWriter -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Xml.ReaderWriter/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Xml.XDocument 4.3.0 -## System.Xml.XDocument -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Xml.XDocument/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-TestableIO.System.IO.Abstractions 21.0.2 -## TestableIO.System.IO.Abstractions -- Version: 21.0.2 -- Authors: Tatham Oddie & friends -- Project URL: https://github.com/TestableIO/System.IO.Abstractions -- Source: [NuGet](https://www.nuget.org/packages/TestableIO.System.IO.Abstractions/21.0.2) -- License: [MIT](https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) -``` -The MIT License (MIT) -Copyright (c) Tatham Oddie and Contributors -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
-
-TestableIO.System.IO.Abstractions.TestingHelpers 21.0.2 -## TestableIO.System.IO.Abstractions.TestingHelpers + dotnet + +/ -- Version: 21.0.2 -- Authors: Tatham Oddie & friends -- Project URL: https://github.com/TestableIO/System.IO.Abstractions -- Source: [NuGet](https://www.nuget.org/packages/TestableIO.System.IO.Abstractions.TestingHelpers/21.0.2) -- License: [MIT](https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) +core +Public -``` -The MIT License (MIT) -Copyright (c) Tatham Oddie and Contributors -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` +Notifications + You must be signed in to change notification settings -
+ -
-TestableIO.System.IO.Abstractions.Wrappers 21.0.2 +Fork + 4.9k -## TestableIO.System.IO.Abstractions.Wrappers -- Version: 21.0.2 -- Authors: Tatham Oddie & friends -- Project URL: https://github.com/TestableIO/System.IO.Abstractions -- Source: [NuGet](https://www.nuget.org/packages/TestableIO.System.IO.Abstractions.Wrappers/21.0.2) -- License: [MIT](https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) -``` -The MIT License (MIT) + -Copyright (c) Tatham Oddie and Contributors -All rights reserved. + Star + 21.2k -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
-
-Validation 2.4.18 -## Validation -- Version: 2.4.18 -- Authors: Andrew Arnott -- Owners: Andrew Arnott -- Project URL: http://github.com/aarnott/Validation -- Source: [NuGet](https://www.nuget.org/packages/Validation/2.4.18) -- License: [Microsoft Public License]( https://raw.githubusercontent.com/AArnott/Validation/69e6a2c4f3/LICENSE.txt) -``` -Microsoft Public License (MS-PL) -This license governs use of the accompanying software. If you use the software, you -accept this license. If you do not accept the license, do not use the software. -1. Definitions -The terms "reproduce," "reproduction," "derivative works," and "distribution" have the -same meaning here as under U.S. copyright law. -A "contribution" is the original software, or any additions or changes to the software. -A "contributor" is any person that distributes its contribution under this license. -"Licensed patents" are a contributor's patent claims that read directly on its contribution. -2. Grant of Rights -(A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create. -(B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software. -3. Conditions and Limitations -(A) No Trademark License- This license does not grant you rights to use any contributors' name, logo, or trademarks. -(B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. -(C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. -(D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license. -(E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. -``` -
+Code -
-Xunit.SkippableFact 1.3.12 -## Xunit.SkippableFact -- Version: 1.3.12 -- Authors: Andrew Arnott -- Owners: Andrew Arnott -- Project URL: https://github.com/AArnott/Xunit.SkippableFact -- Source: [NuGet](https://www.nuget.org/packages/Xunit.SkippableFact/1.3.12) -- License: [Microsoft Public License](https://raw.githubusercontent.com/AArnott/Xunit.SkippableFact/c7f20eaa78/LICENSE.txt) -``` -This software is licensed under the Microsoft Public License -http://opensource.org/licenses/ms-pl -This license governs use of the accompanying software. If you use the software, you -accept this license. If you do not accept the license, do not use the software. +Issues +310 -1. Definitions - The terms "reproduce," "reproduction," "derivative works," and "distribution" have the - same meaning here as under U.S. copyright law. - A "contribution" is the original software, or any additions or changes to the software. - A "contributor" is any person that distributes its contribution under this license. - "Licensed patents" are a contributor's patent claims that read directly on its contribution. -2. Grant of Rights - (A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create. - (B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software. -3. Conditions and Limitations - (A) No Trademark License- This license does not grant you rights to use any contributors' name, logo, or trademarks. - (B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. - (C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. - (D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license. - (E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. -``` -
-
-ZstdSharp.Port 0.7.3 +Pull requests +3 -## ZstdSharp.Port -- Version: 0.7.3 -- Authors: Oleg Stepanischev -- Project URL: https://github.com/oleg-st/ZstdSharp -- Source: [NuGet](https://www.nuget.org/packages/ZstdSharp.Port/0.7.3) -- License: [MIT](https://github.com/oleg-st/ZstdSharp/raw/master/LICENSE) -``` -MIT License -Copyright (c) 2021 Oleg Stepanischev -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +Discussions -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
-
-coverlet.collector 6.0.2 -## coverlet.collector -- Version: 6.0.2 -- Authors: tonerdo -- Project URL: https://github.com/coverlet-coverage/coverlet -- Source: [NuGet](https://www.nuget.org/packages/coverlet.collector/6.0.2) -- License: [MIT](https://github.com/coverlet-coverage/coverlet/raw/master/LICENSE) +Actions -``` -The MIT License (MIT) -Copyright (c) 2018 Toni Solarin-Sodara -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
+Security -
-fo-dicom 5.1.2 -## fo-dicom -- Version: 5.1.2 -- Authors: fo-dicom contributors -- Project URL: https://github.com/fo-dicom/fo-dicom -- Source: [NuGet](https://www.nuget.org/packages/fo-dicom/5.1.2) -- License: [Microsoft Public License](https://github.com/fo-dicom/fo-dicom/raw/development/License.txt) -``` -Fellow Oak DICOM -Copyright (c) 2012-2021 fo-dicom contributors +Insights -This software is licensed under the Microsoft Public License (MS-PL) -Microsoft Public License (MS-PL) -This license governs use of the accompanying software. If you use the software, you -accept this license. If you do not accept the license, do not use the software. + -1. Definitions -The terms "reproduce," "reproduction," "derivative works," and "distribution" have the -same meaning here as under U.S. copyright law. -A "contribution" is the original software, or any additions or changes to the software. -A "contributor" is any person that distributes its contribution under this license. -"Licensed patents" are a contributor's patent claims that read directly on its contribution. + -2. Grant of Rights -(A) Copyright Grant- Subject to the terms of this license, including the license conditions - and limitations in section 3, each contributor grants you a non-exclusive, worldwide, - royalty-free copyright license to reproduce its contribution, prepare derivative works - of its contribution, and distribute its contribution or any derivative works that you create. -(B) Patent Grant- Subject to the terms of this license, including the license conditions and - limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free - license under its licensed patents to make, have made, use, sell, offer for sale, import, - and/or otherwise dispose of its contribution in the software or derivative works of the - contribution in the software. -3. Conditions and Limitations -(A) No Trademark License- This license does not grant you rights to use any contributors' name, - logo, or trademarks. -(B) If you bring a patent claim against any contributor over patents that you claim are infringed - by the software, your patent license from such contributor to the software ends automatically. -(C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, - and attribution notices that are present in the software. -(D) If you distribute any portion of the software in source code form, you may do so only under this - license by including a complete copy of this license with your distribution. If you distribute - any portion of the software in compiled or object code form, you may only do so under a license - that complies with this license. -(E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express - warranties, guarantees or conditions. You may have additional consumer rights under your local - laws which this license cannot change. To the extent permitted under your local laws, the - contributors exclude the implied warranties of merchantability, fitness for a particular purpose - and non-infringement. +Additional navigation options + ----- libijg (from DCMTK 3.5.4 COPYRIGHT) ---- -Unless otherwise specified, the DCMTK software package has the -following copyright: -/* - * Copyright (C) 1994-2004, OFFIS - * - * This software and supporting documentation were developed by - * - * Kuratorium OFFIS e.V. - * Healthcare Information and Communication Systems - * Escherweg 2 - * D-26121 Oldenburg, Germany - * - * THIS SOFTWARE IS MADE AVAILABLE, AS IS, AND OFFIS MAKES NO WARRANTY - * REGARDING THE SOFTWARE, ITS PERFORMANCE, ITS MERCHANTABILITY OR - * FITNESS FOR ANY PARTICULAR USE, FREEDOM FROM ANY COMPUTER DISEASES OR - * ITS CONFORMITY TO ANY SPECIFICATION. THE ENTIRE RISK AS TO QUALITY AND - * PERFORMANCE OF THE SOFTWARE IS WITH THE USER. - * - * Copyright of the software and supporting documentation is, unless - * otherwise stated, owned by OFFIS, and free access is hereby granted as - * a license to use this software, copy this software and prepare - * derivative works based upon this software. However, any distribution - * of this software source code or supporting documentation or derivative - * works (source code and supporting documentation) must include the - * three paragraphs of this copyright notice. - * - */ -The dcmjpeg sub-package includes an adapted version of the Independent JPEG -Group Toolkit Version 6b, which is contained in dcmjpeg/libijg8, -dcmjpeg/libijg12 and dcmjpeg/libijg16. This toolkit is covered by the -following copyright. The original README file for the Independent JPEG -Group Toolkit is located in dcmjpeg/docs/ijg_readme.txt. -/* - * The authors make NO WARRANTY or representation, either express or implied, - * with respect to this software, its quality, accuracy, merchantability, or - * fitness for a particular purpose. This software is provided "AS IS", and you, - * its user, assume the entire risk as to its quality and accuracy. - * - * This software is copyright (C) 1991-1998, Thomas G. Lane. - * All Rights Reserved except as specified below. - * - * Permission is hereby granted to use, copy, modify, and distribute this - * software (or portions thereof) for any purpose, without fee, subject to these - * conditions: - * (1) If any part of the source code for this software is distributed, then this - * README file must be included, with this copyright and no-warranty notice - * unaltered; and any additions, deletions, or changes to the original files - * must be clearly indicated in accompanying documentation. - * (2) If only executable code is distributed, then the accompanying - * documentation must state that "this software is based in part on the work of - * the Independent JPEG Group". - * (3) Permission for use of this software is granted only if the user accepts - * full responsibility for any undesirable consequences; the authors accept - * NO LIABILITY for damages of any kind. - * - * These conditions apply to any software derived from or based on the IJG code, - * not just to the unmodified library. If you use our work, you ought to - * acknowledge us. - * - * Permission is NOT granted for the use of any IJG author's name or company name - * in advertising or publicity relating to this software or products derived from - * it. This software may be referred to only as "the Independent JPEG Group's - * software". - * - * We specifically permit and encourage the use of this software as the basis of - * commercial products, provided that all warranty or liability claims are - * assumed by the product vendor. - */ ----- OpenJPEG JPEG 2000 codec (from license.txt) ---- -/* - * Copyright (c) 2002-2007, Communications and Remote Sensing Laboratory, Universite catholique de Louvain (UCL), Belgium - * Copyright (c) 2002-2007, Professor Benoit Macq - * Copyright (c) 2001-2003, David Janssens - * Copyright (c) 2002-2003, Yannick Verschueren - * Copyright (c) 2003-2007, Francois-Olivier Devaux and Antonin Descampe - * Copyright (c) 2005, Herve Drolon, FreeImage Team - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS' - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ + Code ----- CharLS JPEG-LS codec (from License.txt) ---- -Copyright (c) 2007-2009, Jan de Vaan -All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -* Neither the name of my employer, nor the names of its contributors may be - used to endorse or promote products derived from this software without - specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ----- Unity.IO.Compression (from LICENSE.TXT and PATENTS.TXT) ---- + Issues -The MIT License (MIT) -Copyright (c) Microsoft Corporation -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -Microsoft Patent Promise for .NET Libraries and Runtime Components -Microsoft Corporation and its affiliates ("Microsoft") promise not to assert -any .NET Patents against you for making, using, selling, offering for sale, -importing, or distributing Covered Code, as part of either a .NET Runtime or -as part of any application designed to run on a .NET Runtime. -If you file, maintain, or voluntarily participate in any claim in a lawsuit -alleging direct or contributory patent infringement by any Covered Code, or -inducement of patent infringement by any Covered Code, then your rights under -this promise will automatically terminate. -This promise is not an assurance that (i) any .NET Patents are valid or -enforceable, or (ii) Covered Code does not infringe patents or other -intellectual property rights of any third party. No rights except those -expressly stated in this promise are granted, waived, or received by -Microsoft, whether by implication, exhaustion, estoppel, or otherwise. -This is a personal promise directly from Microsoft to you, and you agree as a -condition of benefiting from it that no Microsoft rights are received from -suppliers, distributors, or otherwise from any other person in connection with -this promise. -Definitions: -"Covered Code" means those Microsoft .NET libraries and runtime components as -made available by Microsoft at https://github.com/Microsoft/referencesource. + Pull requests -".NET Patents" are those patent claims, both currently owned by Microsoft and -acquired in the future, that are necessarily infringed by Covered Code. .NET -Patents do not include any patent claims that are infringed by any Enabling -Technology, that are infringed only as a consequence of modification of -Covered Code, or that are infringed only by the combination of Covered Code -with third party code. -".NET Runtime" means any compliant implementation in software of (a) all of -the required parts of the mandatory provisions of Standard ECMA-335 – Common -Language Infrastructure (CLI); and (b) if implemented, any additional -functionality in Microsoft's .NET Framework, as described in Microsoft's API -documentation on its MSDN website. For example, .NET Runtimes include -Microsoft's .NET Framework and those portions of the Mono Project compliant -with (a) and (b). -"Enabling Technology" means underlying or enabling technology that may be -used, combined, or distributed in connection with Microsoft's .NET Framework -or other .NET Runtimes, such as hardware, operating systems, and applications -that run on .NET Framework or other .NET Runtimes. ----- Nito.AsyncEx (from LICENSE.TXT) ---- -The MIT License (MIT) -Copyright (c) 2014 StephenCleary -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` + Discussions -
-
-runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 -## runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS + Actions -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 -## runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl -- Version: 4.3.2 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + Security -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. ```
-runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 +runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 -## runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl +## runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl - Version: 4.3.0 - Authors: Microsoft - Owners: microsoft,dotnetframework - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0) +- Source: [NuGet](https://www.nuget.org/packages/runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0) - License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) ``` -.NET Library License Terms | .NET +core/license-information.md at main · dotnet/core · GitHub -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 -## runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl -- Version: 4.3.2 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 -## runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 -## runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl -- Version: 4.3.2 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + + + + + + + + + + + Sign in + + + + + + + + + + Product + + + + + + -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. +GitHub Copilot + Write better code with AI + -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-runtime.native.System 4.3.0 -## runtime.native.System +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + + + + + + + + + + Solutions + + + + + + + +By company size + + + + Enterprises + + + + + + Small and medium teams + + + + + + Startups + + + -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.native.System/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + Nonprofits -``` -.NET Library License Terms | .NET + -MICROSOFT SOFTWARE LICENSE -TERMS +By use case -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. + DevSecOps -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  + -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
+ DevOps -
-runtime.native.System.IO.Compression 4.3.0 + -## runtime.native.System.IO.Compression -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.native.System.IO.Compression/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + CI/CD -``` -.NET Library License Terms | .NET + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + + + + Customer Stories + + + + + + Partners + + + + + + + + Executive Insights + + + -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
+ Open Source + -
-runtime.native.System.IO.Compression 4.3.2 -## runtime.native.System.IO.Compression -- Version: 4.3.2 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.native.System.IO.Compression/4.3.2) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS +GitHub Sponsors + Fund open source developers + -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-runtime.native.System.Net.Http 4.3.0 +The ReadME Project + GitHub community articles + -## runtime.native.System.Net.Http -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.native.System.Net.Http/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET +Repositories + Topics -MICROSOFT SOFTWARE LICENSE -TERMS + -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + + + + + + + + + + + +Clear + + + -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-runtime.native.System.Security.Cryptography.Apple 4.3.0 -## runtime.native.System.Security.Cryptography.Apple -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.native.System.Security.Cryptography.Apple/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 -## runtime.native.System.Security.Cryptography.OpenSsl -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.native.System.Security.Cryptography.OpenSsl/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 -## runtime.native.System.Security.Cryptography.OpenSsl -- Version: 4.3.2 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.native.System.Security.Cryptography.OpenSsl/4.3.2) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY + + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. +Public -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
+ -
-runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 +Notifications + You must be signed in to change notification settings -## runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + +Fork + 4.9k -``` -.NET Library License Terms | .NET + -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY + Star + 21.2k -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + + + + Pull requests + + + + + + + + + + + + Discussions + + + + + + + + + + + + Actions + + + + + + + + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. ```
-runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 +runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 -## runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl +## runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl - Version: 4.3.2 - Authors: Microsoft - Owners: microsoft,dotnetframework - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2) +- Source: [NuGet](https://www.nuget.org/packages/runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2) - License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) ``` -.NET Library License Terms | .NET +core/license-information.md at main · dotnet/core · GitHub -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 -## runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 -## runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl -- Version: 4.3.2 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple 4.3.0 -## runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) +Skip to content + + + + + + + + + + + + + +Navigation Menu + +Toggle navigation + + + + + + + + + -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. + Sign in + + + + + + + + + + Product + + + + + + + + + + + + + + +GitHub Copilot + Write better code with AI + + + + + + + + +Security + Find and fix vulnerabilities + + + + + + + + +Actions + Automate any workflow + + + + + + + + +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + + +Code Review + Manage code changes + + + + + + + + +Discussions + Collaborate outside of code + + + + + + + + +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + + + + + Documentation + + + + + + + + GitHub Skills + + + + + + + + Blog + + + + -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 -## runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + Solutions + -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY +By company size -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  + Enterprises -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` + -
-
-runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 + Small and medium teams -## runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl + -- Version: 4.3.2 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET + Startups + -MICROSOFT SOFTWARE LICENSE -TERMS + Nonprofits -MICROSOFT .NET -LIBRARY + -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` +By use case + + + + DevSecOps + + + + + + DevOps + + + + + + CI/CD + + + + + + View all use cases + + + + + + + + +By industry + + + + Healthcare + + + + + + Financial services + + + + + + Manufacturing + + + + + + Government + + + + + + View all industries + + + + + + + + + View all solutions + + + + + + + + + Resources + + + + + + + +Topics + + + + AI + + + + + + DevOps + + + + + + Security + + + + + + Software Development + + + + + + View all + + + + + + + + +Explore + + + + Learning Pathways + + + + + + + + Events & Webinars + + + + + + + + Ebooks & Whitepapers + + + -
+ Customer Stories -
-runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 + -## runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + Partners -``` -.NET Library License Terms | .NET + -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY + Executive Insights -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. + -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 -## runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl -- Version: 4.3.2 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + Open Source + -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  +GitHub Sponsors + Fund open source developers + -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 -## runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET +The ReadME Project + GitHub community articles + + + + + +Repositories + + + + Topics + + + + + + Trending + + + + + + Collections + + + + + + + + + + + Enterprise + + + + + + + + + + + + + + +Enterprise platform + AI-powered developer platform + + + + + +Available add-ons + + + + + + + +Advanced Security + Enterprise-grade security features + + + + + + + + +Copilot for business + Enterprise-grade AI features + + + + + + + + +Premium Support + Enterprise-grade 24/7 support + + + + + + + + +Pricing + + + + + + + + + + + + +Search or jump to... + + + + + + + +Search code, repositories, users, issues, pull requests... + + + + + + + Search + + + + -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
+Clear + -
-runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 -## runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl -- Version: 4.3.2 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 -## runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 -## runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl -- Version: 4.3.2 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
+ + + + +Search syntax tips + + + + + + + + + + + + + + + Provide feedback + + + + + + + + + + + +We read every piece of feedback, and take your input very seriously. + + +Include my email address so I can be contacted + + + Cancel + + Submit feedback + + + + + + + + + + + Saved searches + +Use saved searches to filter your results more quickly + + + + + + + + + + + + + + + +Name + + + + + + +Query + + + + To see all available qualifiers, see our documentation. + + + + + + + + Cancel + + Create saved search + + + + + + + + + Sign in + + + + Sign up + +Reseting focus + + + + + + + + + +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + + + +Dismiss alert + + + + + + + + + + + + + + + + + + + dotnet + +/ + +core + +Public + + + + + + + +Notifications + You must be signed in to change notification settings + + + + +Fork + 4.9k + + + + + + + + Star + 21.2k + + + + + + + + + + + + + + +Code + + + + + + + +Issues +310 + + + + + + +Pull requests +3 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + + + + + Issues + + + + + + + + + -
-runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 + Pull requests -## runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. + Discussions -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 -## runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl -- Version: 4.3.2 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET + Actions -MICROSOFT SOFTWARE LICENSE -TERMS -MICROSOFT .NET -LIBRARY -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. -If -you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. + + + + + Security + + + + + + + + + + + + Insights + + + + + + + + + + + + + + + Files mainBreadcrumbscore/license-information.mdCopy path Blame Blame Latest commit HistoryHistory45 lines (25 loc) · 2.2 KB mainBreadcrumbscore/license-information.mdTopFile metadata and controlsPreviewCodeBlame45 lines (25 loc) · 2.2 KBRawLicense Information +The .NET project uses source and binaries from multiple sources that may be important to your use of .NET. +This document is provided for informative purposes only and is not itself a license. +Source code +.NET source uses the MIT license. +Each repo has: + +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT + +More information: + +Project copyright guidance + +Product distributions +Product distributions use the following license: + +On Linux and macOS: MIT license +On Windows: .NET Library License + +Product distributions include downloadable assets and runtime packs. +More information: + +Windows license information. +.NET Asset Licensing Model + +Package distributions +Library packages use the MIT license, for example System.Text.Json. +Redistribution +Binaries produced by .NET SDK compilers (C#, F#, VB) can be redistributed without additional restrictions. The only restrictions are based on the license of the compiler inputs used to produce the binary. +Applications are subject to the same terms as are covered by "Product distributions" and "Package distibutions", above. +Parts of the .NET runtime are embedded in applications, including platform-specific executable hosts, +and self-contained deployments. + + + + + + + + + +Footer + + + + + + + + + © 2025 GitHub, Inc. + + + +Footer navigation + + +Terms + + +Privacy + + +Security + + +Status + + +Docs + + +Contact + + + + + Manage cookies + + + + + + + Do not share my personal information + + + + + + + + + + + + + + + + + + You can’t perform that action at this time. ```
@@ -33088,7 +111644,7 @@ consequential or other damages. ``` MIT License -Copyright (c) 2019-2024 Josh Keegan +Copyright (c) 2019-2025 Josh Keegan Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -33543,47 +112099,33 @@ Both sets of code are covered by the following license: - Version: 2.8.1 - Authors: jnewkirk,bradwilson - Source: [NuGet](https://www.nuget.org/packages/xunit.runner.visualstudio/2.8.1) -- License: [MIT]( https://licenses.nuget.org/MIT) +- License: [MIT]( https://raw.githubusercontent.com/dotnet/efcore/refs/heads/main/LICENSE.txt) ``` -'MIT' reference - - - -MIT License -SPDX identifier -MIT -License text - -MIT License - +The MIT License (MIT) -Copyright (c) - +Copyright (c) .NET Foundation and Contributors -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and - associated documentation files (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: -The above copyright notice and this permission notice - (including the next paragraph) - shall be included in all copies or substantial - portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT - LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN - NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -SPDX web page +All rights reserved. -https://spdx.org/licenses/MIT.html +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -Notice -This license content is provided by the SPDX project. For more information about licenses.nuget.org, see our documentation. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -Data pulled from spdx/license-list-data on February 9, 2023. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. ```
diff --git a/global.json b/global.json index 391ba3c2..717e3700 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.100", + "version": "8.0.407", "rollForward": "latestFeature" } } diff --git a/src/Api/Monai.Deploy.InformaticsGateway.Api.csproj b/src/Api/Monai.Deploy.InformaticsGateway.Api.csproj index b471101d..9e197885 100755 --- a/src/Api/Monai.Deploy.InformaticsGateway.Api.csproj +++ b/src/Api/Monai.Deploy.InformaticsGateway.Api.csproj @@ -31,7 +31,7 @@ - + @@ -48,13 +48,13 @@ True - - + + - - - - + + + + diff --git a/src/Api/Test/Monai.Deploy.InformaticsGateway.Api.Test.csproj b/src/Api/Test/Monai.Deploy.InformaticsGateway.Api.Test.csproj index 0615a22f..bd39b5b0 100644 --- a/src/Api/Test/Monai.Deploy.InformaticsGateway.Api.Test.csproj +++ b/src/Api/Test/Monai.Deploy.InformaticsGateway.Api.Test.csproj @@ -25,12 +25,12 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive - - + + diff --git a/src/Api/Test/packages.lock.json b/src/Api/Test/packages.lock.json index 531fcb39..38b3d46a 100644 --- a/src/Api/Test/packages.lock.json +++ b/src/Api/Test/packages.lock.json @@ -4,27 +4,27 @@ "net8.0": { "coverlet.collector": { "type": "Direct", - "requested": "[6.0.2, )", - "resolved": "6.0.2", - "contentHash": "bJShQ6uWRTQ100ZeyiMqcFlhP7WJ+bCuabUs885dJiBEzMsJMSFr7BOyeCw4rgvQokteGi5rKQTlkhfQPUXg2A==" + "requested": "[6.0.4, )", + "resolved": "6.0.4", + "contentHash": "lkhqpF8Pu2Y7IiN7OntbsTtdbpR1syMsm2F3IgX6ootA4ffRqWL5jF7XipHuZQTdVuWG/gVAAcf8mjk8Tz0xPg==" }, "Microsoft.NET.Test.Sdk": { "type": "Direct", - "requested": "[17.10.0, )", - "resolved": "17.10.0", - "contentHash": "0/2HeACkaHEYU3wc83YlcD2Fi4LMtECJjqrtvw0lPi9DCEa35zSPt1j4fuvM8NagjDqJuh1Ja35WcRtn1Um6/A==", + "requested": "[17.13.0, )", + "resolved": "17.13.0", + "contentHash": "W19wCPizaIC9Zh47w8wWI/yxuqR7/dtABwOrc8r2jX/8mUNxM2vw4fXDh+DJTeogxV+KzKwg5jNNGQVwf3LXyA==", "dependencies": { - "Microsoft.CodeCoverage": "17.10.0", - "Microsoft.TestPlatform.TestHost": "17.10.0" + "Microsoft.CodeCoverage": "17.13.0", + "Microsoft.TestPlatform.TestHost": "17.13.0" } }, "System.IO.Abstractions.TestingHelpers": { "type": "Direct", - "requested": "[21.0.2, )", - "resolved": "21.0.2", - "contentHash": "35gVJWBrsUkf+ob0xZJaVja0gLYA5UnqM1K0cSHHKfZ71aMMwUbhNNOy/cpHiVF+Z7FLiREVE080F9QDCf5O2A==", + "requested": "[21.3.1, )", + "resolved": "21.3.1", + "contentHash": "LsvGSS5XbvVonvWo1fb6X5T3WFAe59A9A+F+KiyXXDEw8FDDEvaoI+IbUzLPyjTZJ1sIFredoJCgppXjEESL4A==", "dependencies": { - "TestableIO.System.IO.Abstractions.TestingHelpers": "21.0.2" + "TestableIO.System.IO.Abstractions.TestingHelpers": "21.3.1" } }, "xRetry": { @@ -55,49 +55,49 @@ }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.304.15", - "contentHash": "XLfl4/wuTDWXH73FjGUx5P6Jf6FNLTlyVwWvQ0b/WyBOtZVJxPlCKUTYDn06VdqcLGg3uPP6FKJqnplKsnMHMw==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.105", - "contentHash": "axqpqdA4QZvHzEdGDLk5/IpPQsUTIcnVDulz4uyE+UEeYAHpFcp/BNQxmmIU4Gdv0G5KwQWKiaUaZPuLVN0Esg==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.304.15, 4.0.0)" + "AWSSDK.Core": "[3.7.402.25, 4.0.0)" } }, "CommunityToolkit.HighPerformance": { "type": "Transitive", - "resolved": "8.2.2", - "contentHash": "+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==" + "resolved": "8.3.2", + "contentHash": "1Os81ua0FmIOtiSgOk5C1KBraQ3SDfxs/7BG4qDagm48nGplr//lAVqLH9I2TLDVqRFdhqTUaEITFA5Ho/Ovkw==" }, "fo-dicom": { "type": "Transitive", - "resolved": "5.1.2", - "contentHash": "2lM76Vq+GRdwyY3BQiUJ+V6yxdFiOG4ysLJC7qNTxLsq/1pr5ZTTXiIzWQa+uJ0MuKnzzFogV5+meDflsyjs2g==", + "resolved": "5.2.1", + "contentHash": "Oa6raonOj/Xm+a1j3O89OlUXJIF55jLAKjCuXKINYJMJ+hJ/9Al1YOxPs1hut8DBKvHbgYtgdRFtqGNS+Qt6Uw==", "dependencies": { - "CommunityToolkit.HighPerformance": "8.2.2", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "CommunityToolkit.HighPerformance": "8.3.2", + "Microsoft.Bcl.AsyncInterfaces": "8.0.0", "Microsoft.Bcl.HashCode": "1.1.1", "Microsoft.Extensions.DependencyInjection": "6.0.1", "Microsoft.Extensions.Logging": "6.0.0", "Microsoft.Extensions.Options": "6.0.0", "System.Buffers": "4.5.1", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "6.0.9", + "System.Text.Encoding.CodePages": "6.0.1", + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.5", "System.Threading.Channels": "6.0.0" } }, "HL7-dotnetcore": { "type": "Transitive", - "resolved": "2.36.0", - "contentHash": "N1HLMeIqYuY+4O69ItgZJoDBnnpNkK5N2pClceTJ2nFJxsP48iCsA4iz3tm43Yszi4r/vaThoc3UoLBfGP3vKw==" + "resolved": "2.39.1", + "contentHash": "xbgykLlAr644SfYY2oxnpYYto+JFYLuUHt00hRTlhpB+5DiFC2oVSVRA+8yyq/lmkjTNidtTbN9nyK0ft4DSfw==" }, "Macross.Json.Extensions": { "type": "Transitive", @@ -106,8 +106,8 @@ }, "Microsoft.Bcl.AsyncInterfaces": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==" + "resolved": "8.0.0", + "contentHash": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==" }, "Microsoft.Bcl.HashCode": { "type": "Transitive", @@ -116,13 +116,13 @@ }, "Microsoft.CodeCoverage": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "yC7oSlnR54XO5kOuHlVOKtxomNNN1BWXX8lK1G2jaPXT9sUok7kCOoA4Pgs0qyFaCtMrNsprztYMeoEGqCm4uA==" + "resolved": "17.13.0", + "contentHash": "9LIUy0y+DvUmEPtbRDw6Bay3rzwqFV8P4efTrK4CZhQle3M/QwLPjISghfcolmEGAPWxuJi6m98ZEfk4VR4Lfg==" }, "Microsoft.EntityFrameworkCore.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "X7wSSBNFRuN8j8M9HDYG7rPpEeyhY+PdJZR9rftmgvsZH0eK5+bZ3b3As8iO4rLEpjsBzDnrgSIY6q2F3HQatw==" + "resolved": "8.0.14", + "contentHash": "Om8/jdWyx9eKFkA1YEgxk13KjGIzA8teLgG7iNFunsI2+MT6UT54Eb4t6oe4NQlIaACj5voUe6szVAQe9GKwDA==" }, "Microsoft.Extensions.Configuration.Abstractions": { "type": "Transitive", @@ -143,34 +143,33 @@ }, "Microsoft.Extensions.DependencyInjection.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==" + "resolved": "8.0.2", + "contentHash": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==" }, "Microsoft.Extensions.Diagnostics.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==", + "resolved": "8.0.1", + "contentHash": "elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", - "System.Diagnostics.DiagnosticSource": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "Wtylr3ucMUQ+/6x5ngRtBQ0D0TVloWE3hbwUEhwE16OZHB66uqAEVnEvcAXxW2IFuVAuEHMXX5GebfkbSZQSTw==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.6", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.1", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.14", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.3", "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "GiHK4B5Xsf5YzL73kup2zJoJfDx5RJYBd0LZN6dx8XyOSoZnh7NNrMP+vTLxAJVp//JxHk0KIhBnW9YuFrSVig==" + "resolved": "8.0.14", + "contentHash": "se5sdveMiA3PUOWchOZXY/sGA50MrJ/Mg/G6CdQBtyA4MLySNRilVCi23YT90RAwqvI2uQEk5+buxYdpAfuwpA==" }, "Microsoft.Extensions.FileProviders.Abstractions": { "type": "Transitive", @@ -182,14 +181,14 @@ }, "Microsoft.Extensions.Hosting.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "resolved": "8.0.1", + "contentHash": "nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging": { @@ -206,10 +205,10 @@ }, "Microsoft.Extensions.Logging.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Options": { @@ -228,59 +227,59 @@ }, "Microsoft.TestPlatform.ObjectModel": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "KkwhjQevuDj0aBRoPLY6OLAhGqbPUEBuKLbaCs0kUVw29qiOYncdORd4mLVJbn9vGZ7/iFGQ/+AoJl0Tu5Umdg==", + "resolved": "17.13.0", + "contentHash": "bt0E0Dx+iqW97o4A59RCmUmz/5NarJ7LRL+jXbSHod72ibL5XdNm1Ke+UO5tFhBG4VwHLcSjqq9BUSblGNWamw==", "dependencies": { "System.Reflection.Metadata": "1.6.0" } }, "Microsoft.TestPlatform.TestHost": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "LWpMdfqhHvcUkeMCvNYJO8QlPLlYz9XPPb+ZbaXIKhdmjAV0wqTSrTiW5FLaf7RRZT50AQADDOYMOe0HxDxNgA==", + "resolved": "17.13.0", + "contentHash": "9GGw08Dc3AXspjekdyTdZ/wYWFlxbgcF0s7BKxzVX+hzAwpifDOdxM+ceVaaJSQOwqt3jtuNlHn3XTpKUS9x9Q==", "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "17.10.0", + "Microsoft.TestPlatform.ObjectModel": "17.13.0", "Newtonsoft.Json": "13.0.1" } }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "jchWPuXJC4N9g1jZ7ZPSfbDSBfMmIgFw5w9VqAT5A9USdE/10IMT83wL48KkTbR7eHdphghe06iGKk7IPhYweA==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "21.0.2" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Messaging.RabbitMQ": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "/tj7IO/SHYXNRfxh7iIMms9TurhtCIozZp5lDFvd/WkPgKWZyyyZH8wxkNb9r7jIh/vXkrGJcPCxR30uoET+7g==", + "resolved": "2.0.4", + "contentHash": "tmEERdnqJq1STVGx30+wVyj7AtvtT8K2j/59lSiZ7k58ZdRku601Gs6k1KZ/sfGeobCjaB4gI7GROxK+lN6gbg==", "dependencies": { - "Monai.Deploy.Messaging": "2.0.3", - "Polly": "8.4.0", + "Monai.Deploy.Messaging": "2.0.4", + "Polly": "8.5.2", "RabbitMQ.Client": "6.8.1" } }, "Monai.Deploy.Storage": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "ceVSHBPDMxWV7C6TLBoJmJt3X0RQmdPnm+9NU17Zs0TGE58QvSEHn4GJODtK9+ncgUJICjBhPFcNHV40ybEepQ==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.105", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", - "Monai.Deploy.Storage.S3Policy": "1.0.1", - "System.IO.Abstractions": "21.0.2" + "AWSSDK.SecurityToken": "3.7.401.68", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", + "Monai.Deploy.Storage.S3Policy": "1.0.2", + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage.S3Policy": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "mgLlLRphh+vrVKen72jfEzBcoOhAzCjavGMUzWIjIFh5avmb2RJNbQERLSISOCjWnqPscc/xSPKFUUpLMOLdYw==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, @@ -291,16 +290,16 @@ }, "Polly": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "z2EeUutuy49jBQyZ5s2FUuTCGx3GCzJ0cJ2HbjWwks94TsC6bKTtAHKBkMZOa/DyYRl5yIX7MshvMTWl1J6RNg==", + "resolved": "8.5.2", + "contentHash": "vbXsGgkG86nG+TOwY+SmtrGrRHmHH0DQaxtILx//d3Dz/ocJ8izSNYzdvU2gEtWa/LDD8zJLvD3HdjEkdlvkhg==", "dependencies": { - "Polly.Core": "8.4.0" + "Polly.Core": "8.5.2" } }, "Polly.Core": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "3AZxuP//pxOeBo9tQs7/tz4Z5TTbu4BYfjpaXZD0JYKJo98ngN9TMUz1nybh4k0ykWkMBpGZALV/AmVIE3ew7A==" + "resolved": "8.5.2", + "contentHash": "1MJKdxv4zwDmiWvYvVN24DsrWUfgQ4F83voH8bhbtLMdPuGy8CfTUzsgQhvyrl1a7hrM6f/ydwLVdVUI0xooUw==" }, "RabbitMQ.Client": { "type": "Transitive", @@ -318,16 +317,19 @@ }, "System.Diagnostics.DiagnosticSource": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" + "resolved": "6.0.0", + "contentHash": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } }, "System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ewYQGK0kzOpfiYCF0P0nqPAnKqGhqiXAWDFeMtQtwJyERA2s7nLx7KEALwDvIFjZvX6677IsPREoLIU9oBOQvA==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "System.Memory": { @@ -347,28 +349,18 @@ }, "System.Text.Encoding.CodePages": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "6.0.1", + "contentHash": "OV04vEWTSDXzaAJCjylOIdjB7Z7QTYQcz4/ATZSiG8PLkZLsbtaADj0Ydj4FdFnqq4PAwEA7SuILE+6ka4cn6A==" }, "System.Text.Encodings.Web": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "8.0.0", + "contentHash": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==" }, "System.Text.Json": { "type": "Transitive", - "resolved": "6.0.9", - "contentHash": "2j16oUgtIzl7Xtk7demG0i/v5aU/ZvULcAnJvPb63U3ZhXJ494UYcxuEj5Fs49i3XDrk5kU/8I+6l9zRCw3cJw==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "6.0.0" - } + "resolved": "8.0.5", + "contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==" }, "System.Threading.Channels": { "type": "Transitive", @@ -377,24 +369,24 @@ }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ViPtOy4lAlmWq9GDEwiE5C9XSgDGHUWMRvVvruI38pbikUXkgu7xnCVW7PYdQOjS+iWWcQHt+U7oyPedfnWSHg==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.TestingHelpers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "4s6EC7rGSlNPqC9/FOmYavFTjetO7zDBnc0H8Hyb8ABJll2UgeC7UvdNLwx28/hhUE8AvUJmwamjAII6LJWIQA==", + "resolved": "21.3.1", + "contentHash": "XP7tiKVtnOP+jXWsRqgc7WCV2tsoolVnxSNUJXwdWmHCpLMsVlZXRag7dMynnNEQQB9XEJx25RteqN5APCnjag==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ii6Xgru3ozRaLezwE/lKAPTdE3ES+S3P3ul+QrMxIP10GN+LF0JAi4aWqb8lxzEAwBMSAeK/QipEpVt4KYlTOg==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "xunit.abstractions": { @@ -440,21 +432,21 @@ "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "HL7-dotnetcore": "[2.36.0, )", + "HL7-dotnetcore": "[2.39.1, )", "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.6, )", + "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.14, )", "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Messaging.RabbitMQ": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )", - "fo-dicom": "[5.1.2, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Messaging.RabbitMQ": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )", + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )", - "System.IO.Abstractions": "[21.0.2, )" + "Ardalis.GuardClauses": "[4.6.0, )", + "System.IO.Abstractions": "[21.3.1, )" } } } diff --git a/src/Api/packages.lock.json b/src/Api/packages.lock.json old mode 100755 new mode 100644 index ff01254b..7c43f61f --- a/src/Api/packages.lock.json +++ b/src/Api/packages.lock.json @@ -4,28 +4,28 @@ "net8.0": { "fo-dicom": { "type": "Direct", - "requested": "[5.1.2, )", - "resolved": "5.1.2", - "contentHash": "2lM76Vq+GRdwyY3BQiUJ+V6yxdFiOG4ysLJC7qNTxLsq/1pr5ZTTXiIzWQa+uJ0MuKnzzFogV5+meDflsyjs2g==", + "requested": "[5.2.1, )", + "resolved": "5.2.1", + "contentHash": "Oa6raonOj/Xm+a1j3O89OlUXJIF55jLAKjCuXKINYJMJ+hJ/9Al1YOxPs1hut8DBKvHbgYtgdRFtqGNS+Qt6Uw==", "dependencies": { - "CommunityToolkit.HighPerformance": "8.2.2", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "CommunityToolkit.HighPerformance": "8.3.2", + "Microsoft.Bcl.AsyncInterfaces": "8.0.0", "Microsoft.Bcl.HashCode": "1.1.1", "Microsoft.Extensions.DependencyInjection": "6.0.1", "Microsoft.Extensions.Logging": "6.0.0", "Microsoft.Extensions.Options": "6.0.0", "System.Buffers": "4.5.1", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "6.0.9", + "System.Text.Encoding.CodePages": "6.0.1", + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.5", "System.Threading.Channels": "6.0.0" } }, "HL7-dotnetcore": { "type": "Direct", - "requested": "[2.36.0, )", - "resolved": "2.36.0", - "contentHash": "N1HLMeIqYuY+4O69ItgZJoDBnnpNkK5N2pClceTJ2nFJxsP48iCsA4iz3tm43Yszi4r/vaThoc3UoLBfGP3vKw==" + "requested": "[2.39.1, )", + "resolved": "2.39.1", + "contentHash": "xbgykLlAr644SfYY2oxnpYYto+JFYLuUHt00hRTlhpB+5DiFC2oVSVRA+8yyq/lmkjTNidtTbN9nyK0ft4DSfw==" }, "Macross.Json.Extensions": { "type": "Direct", @@ -35,78 +35,78 @@ }, "Microsoft.EntityFrameworkCore.Abstractions": { "type": "Direct", - "requested": "[8.0.6, )", - "resolved": "8.0.6", - "contentHash": "X7wSSBNFRuN8j8M9HDYG7rPpEeyhY+PdJZR9rftmgvsZH0eK5+bZ3b3As8iO4rLEpjsBzDnrgSIY6q2F3HQatw==" + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "Om8/jdWyx9eKFkA1YEgxk13KjGIzA8teLgG7iNFunsI2+MT6UT54Eb4t6oe4NQlIaACj5voUe6szVAQe9GKwDA==" }, "Microsoft.NET.ILLink.Tasks": { "type": "Direct", - "requested": "[8.0.7, )", - "resolved": "8.0.7", - "contentHash": "iI52ptEKby2ymQ6B7h4TWbFmm85T4VvLgc/HvS45Yr3lgi4IIFbQtjON3bQbX/Vc94jXNSLvrDOp5Kh7SJyFYQ==" + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "4U2fd7PexNKrK5ZqfqIcXZj9/lRRjFsLgA/pxuFQTuGQuLYP/+7yACz/j7EmWbEj/fspOf4mafi/vHIy/rKDzQ==" }, "Monai.Deploy.Messaging": { "type": "Direct", - "requested": "[2.0.3, )", - "resolved": "2.0.3", - "contentHash": "jchWPuXJC4N9g1jZ7ZPSfbDSBfMmIgFw5w9VqAT5A9USdE/10IMT83wL48KkTbR7eHdphghe06iGKk7IPhYweA==", + "requested": "[2.0.4, )", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "21.0.2" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Messaging.RabbitMQ": { "type": "Direct", - "requested": "[2.0.3, )", - "resolved": "2.0.3", - "contentHash": "/tj7IO/SHYXNRfxh7iIMms9TurhtCIozZp5lDFvd/WkPgKWZyyyZH8wxkNb9r7jIh/vXkrGJcPCxR30uoET+7g==", + "requested": "[2.0.4, )", + "resolved": "2.0.4", + "contentHash": "tmEERdnqJq1STVGx30+wVyj7AtvtT8K2j/59lSiZ7k58ZdRku601Gs6k1KZ/sfGeobCjaB4gI7GROxK+lN6gbg==", "dependencies": { - "Monai.Deploy.Messaging": "2.0.3", - "Polly": "8.4.0", + "Monai.Deploy.Messaging": "2.0.4", + "Polly": "8.5.2", "RabbitMQ.Client": "6.8.1" } }, "Monai.Deploy.Storage": { "type": "Direct", - "requested": "[1.0.1, )", - "resolved": "1.0.1", - "contentHash": "ceVSHBPDMxWV7C6TLBoJmJt3X0RQmdPnm+9NU17Zs0TGE58QvSEHn4GJODtK9+ncgUJICjBhPFcNHV40ybEepQ==", + "requested": "[1.0.2, )", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.105", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", - "Monai.Deploy.Storage.S3Policy": "1.0.1", - "System.IO.Abstractions": "21.0.2" + "AWSSDK.SecurityToken": "3.7.401.68", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", + "Monai.Deploy.Storage.S3Policy": "1.0.2", + "System.IO.Abstractions": "21.3.1" } }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.304.15", - "contentHash": "XLfl4/wuTDWXH73FjGUx5P6Jf6FNLTlyVwWvQ0b/WyBOtZVJxPlCKUTYDn06VdqcLGg3uPP6FKJqnplKsnMHMw==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.105", - "contentHash": "axqpqdA4QZvHzEdGDLk5/IpPQsUTIcnVDulz4uyE+UEeYAHpFcp/BNQxmmIU4Gdv0G5KwQWKiaUaZPuLVN0Esg==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.304.15, 4.0.0)" + "AWSSDK.Core": "[3.7.402.25, 4.0.0)" } }, "CommunityToolkit.HighPerformance": { "type": "Transitive", - "resolved": "8.2.2", - "contentHash": "+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==" + "resolved": "8.3.2", + "contentHash": "1Os81ua0FmIOtiSgOk5C1KBraQ3SDfxs/7BG4qDagm48nGplr//lAVqLH9I2TLDVqRFdhqTUaEITFA5Ho/Ovkw==" }, "Microsoft.Bcl.AsyncInterfaces": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==" + "resolved": "8.0.0", + "contentHash": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==" }, "Microsoft.Bcl.HashCode": { "type": "Transitive", @@ -132,34 +132,33 @@ }, "Microsoft.Extensions.DependencyInjection.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==" + "resolved": "8.0.2", + "contentHash": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==" }, "Microsoft.Extensions.Diagnostics.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==", + "resolved": "8.0.1", + "contentHash": "elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", - "System.Diagnostics.DiagnosticSource": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "Wtylr3ucMUQ+/6x5ngRtBQ0D0TVloWE3hbwUEhwE16OZHB66uqAEVnEvcAXxW2IFuVAuEHMXX5GebfkbSZQSTw==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.6", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.1", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.14", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.3", "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "GiHK4B5Xsf5YzL73kup2zJoJfDx5RJYBd0LZN6dx8XyOSoZnh7NNrMP+vTLxAJVp//JxHk0KIhBnW9YuFrSVig==" + "resolved": "8.0.14", + "contentHash": "se5sdveMiA3PUOWchOZXY/sGA50MrJ/Mg/G6CdQBtyA4MLySNRilVCi23YT90RAwqvI2uQEk5+buxYdpAfuwpA==" }, "Microsoft.Extensions.FileProviders.Abstractions": { "type": "Transitive", @@ -171,14 +170,14 @@ }, "Microsoft.Extensions.Hosting.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "resolved": "8.0.1", + "contentHash": "nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging": { @@ -195,10 +194,10 @@ }, "Microsoft.Extensions.Logging.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Options": { @@ -217,10 +216,10 @@ }, "Monai.Deploy.Storage.S3Policy": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "mgLlLRphh+vrVKen72jfEzBcoOhAzCjavGMUzWIjIFh5avmb2RJNbQERLSISOCjWnqPscc/xSPKFUUpLMOLdYw==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, @@ -231,16 +230,16 @@ }, "Polly": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "z2EeUutuy49jBQyZ5s2FUuTCGx3GCzJ0cJ2HbjWwks94TsC6bKTtAHKBkMZOa/DyYRl5yIX7MshvMTWl1J6RNg==", + "resolved": "8.5.2", + "contentHash": "vbXsGgkG86nG+TOwY+SmtrGrRHmHH0DQaxtILx//d3Dz/ocJ8izSNYzdvU2gEtWa/LDD8zJLvD3HdjEkdlvkhg==", "dependencies": { - "Polly.Core": "8.4.0" + "Polly.Core": "8.5.2" } }, "Polly.Core": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "3AZxuP//pxOeBo9tQs7/tz4Z5TTbu4BYfjpaXZD0JYKJo98ngN9TMUz1nybh4k0ykWkMBpGZALV/AmVIE3ew7A==" + "resolved": "8.5.2", + "contentHash": "1MJKdxv4zwDmiWvYvVN24DsrWUfgQ4F83voH8bhbtLMdPuGy8CfTUzsgQhvyrl1a7hrM6f/ydwLVdVUI0xooUw==" }, "RabbitMQ.Client": { "type": "Transitive", @@ -258,16 +257,19 @@ }, "System.Diagnostics.DiagnosticSource": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" + "resolved": "6.0.0", + "contentHash": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } }, "System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ewYQGK0kzOpfiYCF0P0nqPAnKqGhqiXAWDFeMtQtwJyERA2s7nLx7KEALwDvIFjZvX6677IsPREoLIU9oBOQvA==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "System.Memory": { @@ -282,28 +284,18 @@ }, "System.Text.Encoding.CodePages": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "6.0.1", + "contentHash": "OV04vEWTSDXzaAJCjylOIdjB7Z7QTYQcz4/ATZSiG8PLkZLsbtaADj0Ydj4FdFnqq4PAwEA7SuILE+6ka4cn6A==" }, "System.Text.Encodings.Web": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "8.0.0", + "contentHash": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==" }, "System.Text.Json": { "type": "Transitive", - "resolved": "6.0.9", - "contentHash": "2j16oUgtIzl7Xtk7demG0i/v5aU/ZvULcAnJvPb63U3ZhXJ494UYcxuEj5Fs49i3XDrk5kU/8I+6l9zRCw3cJw==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "6.0.0" - } + "resolved": "8.0.5", + "contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==" }, "System.Threading.Channels": { "type": "Transitive", @@ -312,22 +304,22 @@ }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ViPtOy4lAlmWq9GDEwiE5C9XSgDGHUWMRvVvruI38pbikUXkgu7xnCVW7PYdQOjS+iWWcQHt+U7oyPedfnWSHg==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ii6Xgru3ozRaLezwE/lKAPTdE3ES+S3P3ul+QrMxIP10GN+LF0JAi4aWqb8lxzEAwBMSAeK/QipEpVt4KYlTOg==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )", - "System.IO.Abstractions": "[21.0.2, )" + "Ardalis.GuardClauses": "[4.6.0, )", + "System.IO.Abstractions": "[21.3.1, )" } } } diff --git a/src/CLI/Test/Monai.Deploy.InformaticsGateway.CLI.Test.csproj b/src/CLI/Test/Monai.Deploy.InformaticsGateway.CLI.Test.csproj index f7c56b1e..48f99fe8 100644 --- a/src/CLI/Test/Monai.Deploy.InformaticsGateway.CLI.Test.csproj +++ b/src/CLI/Test/Monai.Deploy.InformaticsGateway.CLI.Test.csproj @@ -25,14 +25,14 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive - + - + diff --git a/src/CLI/Test/packages.lock.json b/src/CLI/Test/packages.lock.json index 302f6cc5..8a940a81 100644 --- a/src/CLI/Test/packages.lock.json +++ b/src/CLI/Test/packages.lock.json @@ -4,18 +4,18 @@ "net8.0": { "coverlet.collector": { "type": "Direct", - "requested": "[6.0.2, )", - "resolved": "6.0.2", - "contentHash": "bJShQ6uWRTQ100ZeyiMqcFlhP7WJ+bCuabUs885dJiBEzMsJMSFr7BOyeCw4rgvQokteGi5rKQTlkhfQPUXg2A==" + "requested": "[6.0.4, )", + "resolved": "6.0.4", + "contentHash": "lkhqpF8Pu2Y7IiN7OntbsTtdbpR1syMsm2F3IgX6ootA4ffRqWL5jF7XipHuZQTdVuWG/gVAAcf8mjk8Tz0xPg==" }, "Microsoft.NET.Test.Sdk": { "type": "Direct", - "requested": "[17.10.0, )", - "resolved": "17.10.0", - "contentHash": "0/2HeACkaHEYU3wc83YlcD2Fi4LMtECJjqrtvw0lPi9DCEa35zSPt1j4fuvM8NagjDqJuh1Ja35WcRtn1Um6/A==", + "requested": "[17.13.0, )", + "resolved": "17.13.0", + "contentHash": "W19wCPizaIC9Zh47w8wWI/yxuqR7/dtABwOrc8r2jX/8mUNxM2vw4fXDh+DJTeogxV+KzKwg5jNNGQVwf3LXyA==", "dependencies": { - "Microsoft.CodeCoverage": "17.10.0", - "Microsoft.TestPlatform.TestHost": "17.10.0" + "Microsoft.CodeCoverage": "17.13.0", + "Microsoft.TestPlatform.TestHost": "17.13.0" } }, "Moq": { @@ -40,11 +40,11 @@ }, "System.IO.Abstractions.TestingHelpers": { "type": "Direct", - "requested": "[21.0.2, )", - "resolved": "21.0.2", - "contentHash": "35gVJWBrsUkf+ob0xZJaVja0gLYA5UnqM1K0cSHHKfZ71aMMwUbhNNOy/cpHiVF+Z7FLiREVE080F9QDCf5O2A==", + "requested": "[21.3.1, )", + "resolved": "21.3.1", + "contentHash": "LsvGSS5XbvVonvWo1fb6X5T3WFAe59A9A+F+KiyXXDEw8FDDEvaoI+IbUzLPyjTZJ1sIFredoJCgppXjEESL4A==", "dependencies": { - "TestableIO.System.IO.Abstractions.TestingHelpers": "21.0.2" + "TestableIO.System.IO.Abstractions.TestingHelpers": "21.3.1" } }, "xRetry": { @@ -75,20 +75,20 @@ }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.304.15", - "contentHash": "XLfl4/wuTDWXH73FjGUx5P6Jf6FNLTlyVwWvQ0b/WyBOtZVJxPlCKUTYDn06VdqcLGg3uPP6FKJqnplKsnMHMw==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.105", - "contentHash": "axqpqdA4QZvHzEdGDLk5/IpPQsUTIcnVDulz4uyE+UEeYAHpFcp/BNQxmmIU4Gdv0G5KwQWKiaUaZPuLVN0Esg==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.304.15, 4.0.0)" + "AWSSDK.Core": "[3.7.402.25, 4.0.0)" } }, "Castle.Core": { @@ -101,8 +101,8 @@ }, "CommunityToolkit.HighPerformance": { "type": "Transitive", - "resolved": "8.2.2", - "contentHash": "+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==" + "resolved": "8.3.2", + "contentHash": "1Os81ua0FmIOtiSgOk5C1KBraQ3SDfxs/7BG4qDagm48nGplr//lAVqLH9I2TLDVqRFdhqTUaEITFA5Ho/Ovkw==" }, "Crayon": { "type": "Transitive", @@ -121,26 +121,26 @@ }, "fo-dicom": { "type": "Transitive", - "resolved": "5.1.2", - "contentHash": "2lM76Vq+GRdwyY3BQiUJ+V6yxdFiOG4ysLJC7qNTxLsq/1pr5ZTTXiIzWQa+uJ0MuKnzzFogV5+meDflsyjs2g==", + "resolved": "5.2.1", + "contentHash": "Oa6raonOj/Xm+a1j3O89OlUXJIF55jLAKjCuXKINYJMJ+hJ/9Al1YOxPs1hut8DBKvHbgYtgdRFtqGNS+Qt6Uw==", "dependencies": { - "CommunityToolkit.HighPerformance": "8.2.2", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "CommunityToolkit.HighPerformance": "8.3.2", + "Microsoft.Bcl.AsyncInterfaces": "8.0.0", "Microsoft.Bcl.HashCode": "1.1.1", "Microsoft.Extensions.DependencyInjection": "6.0.1", "Microsoft.Extensions.Logging": "6.0.0", "Microsoft.Extensions.Options": "6.0.0", "System.Buffers": "4.5.1", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "6.0.9", + "System.Text.Encoding.CodePages": "6.0.1", + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.5", "System.Threading.Channels": "6.0.0" } }, "HL7-dotnetcore": { "type": "Transitive", - "resolved": "2.36.0", - "contentHash": "N1HLMeIqYuY+4O69ItgZJoDBnnpNkK5N2pClceTJ2nFJxsP48iCsA4iz3tm43Yszi4r/vaThoc3UoLBfGP3vKw==" + "resolved": "2.39.1", + "contentHash": "xbgykLlAr644SfYY2oxnpYYto+JFYLuUHt00hRTlhpB+5DiFC2oVSVRA+8yyq/lmkjTNidtTbN9nyK0ft4DSfw==" }, "Macross.Json.Extensions": { "type": "Transitive", @@ -149,8 +149,8 @@ }, "Microsoft.Bcl.AsyncInterfaces": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==" + "resolved": "8.0.0", + "contentHash": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==" }, "Microsoft.Bcl.HashCode": { "type": "Transitive", @@ -159,8 +159,8 @@ }, "Microsoft.CodeCoverage": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "yC7oSlnR54XO5kOuHlVOKtxomNNN1BWXX8lK1G2jaPXT9sUok7kCOoA4Pgs0qyFaCtMrNsprztYMeoEGqCm4uA==" + "resolved": "17.13.0", + "contentHash": "9LIUy0y+DvUmEPtbRDw6Bay3rzwqFV8P4efTrK4CZhQle3M/QwLPjISghfcolmEGAPWxuJi6m98ZEfk4VR4Lfg==" }, "Microsoft.CSharp": { "type": "Transitive", @@ -169,8 +169,8 @@ }, "Microsoft.EntityFrameworkCore.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "X7wSSBNFRuN8j8M9HDYG7rPpEeyhY+PdJZR9rftmgvsZH0eK5+bZ3b3As8iO4rLEpjsBzDnrgSIY6q2F3HQatw==" + "resolved": "8.0.14", + "contentHash": "Om8/jdWyx9eKFkA1YEgxk13KjGIzA8teLgG7iNFunsI2+MT6UT54Eb4t6oe4NQlIaACj5voUe6szVAQe9GKwDA==" }, "Microsoft.Extensions.Configuration": { "type": "Transitive", @@ -260,8 +260,8 @@ }, "Microsoft.Extensions.DependencyInjection.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==" + "resolved": "8.0.2", + "contentHash": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==" }, "Microsoft.Extensions.Diagnostics": { "type": "Transitive", @@ -275,29 +275,28 @@ }, "Microsoft.Extensions.Diagnostics.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==", + "resolved": "8.0.1", + "contentHash": "elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", - "System.Diagnostics.DiagnosticSource": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "Wtylr3ucMUQ+/6x5ngRtBQ0D0TVloWE3hbwUEhwE16OZHB66uqAEVnEvcAXxW2IFuVAuEHMXX5GebfkbSZQSTw==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.6", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.1", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.14", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.3", "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "GiHK4B5Xsf5YzL73kup2zJoJfDx5RJYBd0LZN6dx8XyOSoZnh7NNrMP+vTLxAJVp//JxHk0KIhBnW9YuFrSVig==" + "resolved": "8.0.14", + "contentHash": "se5sdveMiA3PUOWchOZXY/sGA50MrJ/Mg/G6CdQBtyA4MLySNRilVCi23YT90RAwqvI2uQEk5+buxYdpAfuwpA==" }, "Microsoft.Extensions.FileProviders.Abstractions": { "type": "Transitive", @@ -352,14 +351,14 @@ }, "Microsoft.Extensions.Hosting.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "resolved": "8.0.1", + "contentHash": "nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Http": { @@ -387,10 +386,10 @@ }, "Microsoft.Extensions.Logging.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging.Configuration": { @@ -485,59 +484,59 @@ }, "Microsoft.TestPlatform.ObjectModel": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "KkwhjQevuDj0aBRoPLY6OLAhGqbPUEBuKLbaCs0kUVw29qiOYncdORd4mLVJbn9vGZ7/iFGQ/+AoJl0Tu5Umdg==", + "resolved": "17.13.0", + "contentHash": "bt0E0Dx+iqW97o4A59RCmUmz/5NarJ7LRL+jXbSHod72ibL5XdNm1Ke+UO5tFhBG4VwHLcSjqq9BUSblGNWamw==", "dependencies": { "System.Reflection.Metadata": "1.6.0" } }, "Microsoft.TestPlatform.TestHost": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "LWpMdfqhHvcUkeMCvNYJO8QlPLlYz9XPPb+ZbaXIKhdmjAV0wqTSrTiW5FLaf7RRZT50AQADDOYMOe0HxDxNgA==", + "resolved": "17.13.0", + "contentHash": "9GGw08Dc3AXspjekdyTdZ/wYWFlxbgcF0s7BKxzVX+hzAwpifDOdxM+ceVaaJSQOwqt3jtuNlHn3XTpKUS9x9Q==", "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "17.10.0", + "Microsoft.TestPlatform.ObjectModel": "17.13.0", "Newtonsoft.Json": "13.0.1" } }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "jchWPuXJC4N9g1jZ7ZPSfbDSBfMmIgFw5w9VqAT5A9USdE/10IMT83wL48KkTbR7eHdphghe06iGKk7IPhYweA==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "21.0.2" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Messaging.RabbitMQ": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "/tj7IO/SHYXNRfxh7iIMms9TurhtCIozZp5lDFvd/WkPgKWZyyyZH8wxkNb9r7jIh/vXkrGJcPCxR30uoET+7g==", + "resolved": "2.0.4", + "contentHash": "tmEERdnqJq1STVGx30+wVyj7AtvtT8K2j/59lSiZ7k58ZdRku601Gs6k1KZ/sfGeobCjaB4gI7GROxK+lN6gbg==", "dependencies": { - "Monai.Deploy.Messaging": "2.0.3", - "Polly": "8.4.0", + "Monai.Deploy.Messaging": "2.0.4", + "Polly": "8.5.2", "RabbitMQ.Client": "6.8.1" } }, "Monai.Deploy.Storage": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "ceVSHBPDMxWV7C6TLBoJmJt3X0RQmdPnm+9NU17Zs0TGE58QvSEHn4GJODtK9+ncgUJICjBhPFcNHV40ybEepQ==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.105", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", - "Monai.Deploy.Storage.S3Policy": "1.0.1", - "System.IO.Abstractions": "21.0.2" + "AWSSDK.SecurityToken": "3.7.401.68", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", + "Monai.Deploy.Storage.S3Policy": "1.0.2", + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage.S3Policy": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "mgLlLRphh+vrVKen72jfEzBcoOhAzCjavGMUzWIjIFh5avmb2RJNbQERLSISOCjWnqPscc/xSPKFUUpLMOLdYw==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, @@ -548,16 +547,16 @@ }, "Polly": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "z2EeUutuy49jBQyZ5s2FUuTCGx3GCzJ0cJ2HbjWwks94TsC6bKTtAHKBkMZOa/DyYRl5yIX7MshvMTWl1J6RNg==", + "resolved": "8.5.2", + "contentHash": "vbXsGgkG86nG+TOwY+SmtrGrRHmHH0DQaxtILx//d3Dz/ocJ8izSNYzdvU2gEtWa/LDD8zJLvD3HdjEkdlvkhg==", "dependencies": { - "Polly.Core": "8.4.0" + "Polly.Core": "8.5.2" } }, "Polly.Core": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "3AZxuP//pxOeBo9tQs7/tz4Z5TTbu4BYfjpaXZD0JYKJo98ngN9TMUz1nybh4k0ykWkMBpGZALV/AmVIE3ew7A==" + "resolved": "8.5.2", + "contentHash": "1MJKdxv4zwDmiWvYvVN24DsrWUfgQ4F83voH8bhbtLMdPuGy8CfTUzsgQhvyrl1a7hrM6f/ydwLVdVUI0xooUw==" }, "RabbitMQ.Client": { "type": "Transitive", @@ -595,11 +594,6 @@ "System.CommandLine": "2.0.0-beta4.22272.1" } }, - "System.Diagnostics.DiagnosticSource": { - "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" - }, "System.Diagnostics.EventLog": { "type": "Transitive", "resolved": "6.0.0", @@ -607,11 +601,11 @@ }, "System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ewYQGK0kzOpfiYCF0P0nqPAnKqGhqiXAWDFeMtQtwJyERA2s7nLx7KEALwDvIFjZvX6677IsPREoLIU9oBOQvA==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "System.Memory": { @@ -631,28 +625,18 @@ }, "System.Text.Encoding.CodePages": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "6.0.1", + "contentHash": "OV04vEWTSDXzaAJCjylOIdjB7Z7QTYQcz4/ATZSiG8PLkZLsbtaADj0Ydj4FdFnqq4PAwEA7SuILE+6ka4cn6A==" }, "System.Text.Encodings.Web": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "8.0.0", + "contentHash": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==" }, "System.Text.Json": { "type": "Transitive", - "resolved": "6.0.9", - "contentHash": "2j16oUgtIzl7Xtk7demG0i/v5aU/ZvULcAnJvPb63U3ZhXJ494UYcxuEj5Fs49i3XDrk5kU/8I+6l9zRCw3cJw==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "6.0.0" - } + "resolved": "8.0.5", + "contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==" }, "System.Threading.Channels": { "type": "Transitive", @@ -666,24 +650,24 @@ }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ViPtOy4lAlmWq9GDEwiE5C9XSgDGHUWMRvVvruI38pbikUXkgu7xnCVW7PYdQOjS+iWWcQHt+U7oyPedfnWSHg==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.TestingHelpers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "4s6EC7rGSlNPqC9/FOmYavFTjetO7zDBnc0H8Hyb8ABJll2UgeC7UvdNLwx28/hhUE8AvUJmwamjAII6LJWIQA==", + "resolved": "21.3.1", + "contentHash": "XP7tiKVtnOP+jXWsRqgc7WCV2tsoolVnxSNUJXwdWmHCpLMsVlZXRag7dMynnNEQQB9XEJx25RteqN5APCnjag==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ii6Xgru3ozRaLezwE/lKAPTdE3ES+S3P3ul+QrMxIP10GN+LF0JAi4aWqb8lxzEAwBMSAeK/QipEpVt4KYlTOg==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "xunit.abstractions": { @@ -742,14 +726,14 @@ "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "HL7-dotnetcore": "[2.36.0, )", + "HL7-dotnetcore": "[2.39.1, )", "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.6, )", + "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.14, )", "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Messaging.RabbitMQ": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )", - "fo-dicom": "[5.1.2, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Messaging.RabbitMQ": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )", + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.informaticsgateway.client": { @@ -762,14 +746,14 @@ "monai.deploy.informaticsgateway.client.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )" + "Ardalis.GuardClauses": "[4.6.0, )" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )", - "System.IO.Abstractions": "[21.0.2, )" + "Ardalis.GuardClauses": "[4.6.0, )", + "System.IO.Abstractions": "[21.3.1, )" } } } diff --git a/src/CLI/packages.lock.json b/src/CLI/packages.lock.json old mode 100755 new mode 100644 index 31a286b8..2d0b6e2f --- a/src/CLI/packages.lock.json +++ b/src/CLI/packages.lock.json @@ -35,9 +35,9 @@ }, "Microsoft.NET.ILLink.Tasks": { "type": "Direct", - "requested": "[8.0.7, )", - "resolved": "8.0.7", - "contentHash": "iI52ptEKby2ymQ6B7h4TWbFmm85T4VvLgc/HvS45Yr3lgi4IIFbQtjON3bQbX/Vc94jXNSLvrDOp5Kh7SJyFYQ==" + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "4U2fd7PexNKrK5ZqfqIcXZj9/lRRjFsLgA/pxuFQTuGQuLYP/+7yACz/j7EmWbEj/fspOf4mafi/vHIy/rKDzQ==" }, "System.CommandLine.Hosting": { "type": "Direct", @@ -62,49 +62,49 @@ }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.304.15", - "contentHash": "XLfl4/wuTDWXH73FjGUx5P6Jf6FNLTlyVwWvQ0b/WyBOtZVJxPlCKUTYDn06VdqcLGg3uPP6FKJqnplKsnMHMw==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.105", - "contentHash": "axqpqdA4QZvHzEdGDLk5/IpPQsUTIcnVDulz4uyE+UEeYAHpFcp/BNQxmmIU4Gdv0G5KwQWKiaUaZPuLVN0Esg==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.304.15, 4.0.0)" + "AWSSDK.Core": "[3.7.402.25, 4.0.0)" } }, "CommunityToolkit.HighPerformance": { "type": "Transitive", - "resolved": "8.2.2", - "contentHash": "+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==" + "resolved": "8.3.2", + "contentHash": "1Os81ua0FmIOtiSgOk5C1KBraQ3SDfxs/7BG4qDagm48nGplr//lAVqLH9I2TLDVqRFdhqTUaEITFA5Ho/Ovkw==" }, "fo-dicom": { "type": "Transitive", - "resolved": "5.1.2", - "contentHash": "2lM76Vq+GRdwyY3BQiUJ+V6yxdFiOG4ysLJC7qNTxLsq/1pr5ZTTXiIzWQa+uJ0MuKnzzFogV5+meDflsyjs2g==", + "resolved": "5.2.1", + "contentHash": "Oa6raonOj/Xm+a1j3O89OlUXJIF55jLAKjCuXKINYJMJ+hJ/9Al1YOxPs1hut8DBKvHbgYtgdRFtqGNS+Qt6Uw==", "dependencies": { - "CommunityToolkit.HighPerformance": "8.2.2", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "CommunityToolkit.HighPerformance": "8.3.2", + "Microsoft.Bcl.AsyncInterfaces": "8.0.0", "Microsoft.Bcl.HashCode": "1.1.1", "Microsoft.Extensions.DependencyInjection": "6.0.1", "Microsoft.Extensions.Logging": "6.0.0", "Microsoft.Extensions.Options": "6.0.0", "System.Buffers": "4.5.1", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "6.0.9", + "System.Text.Encoding.CodePages": "6.0.1", + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.5", "System.Threading.Channels": "6.0.0" } }, "HL7-dotnetcore": { "type": "Transitive", - "resolved": "2.36.0", - "contentHash": "N1HLMeIqYuY+4O69ItgZJoDBnnpNkK5N2pClceTJ2nFJxsP48iCsA4iz3tm43Yszi4r/vaThoc3UoLBfGP3vKw==" + "resolved": "2.39.1", + "contentHash": "xbgykLlAr644SfYY2oxnpYYto+JFYLuUHt00hRTlhpB+5DiFC2oVSVRA+8yyq/lmkjTNidtTbN9nyK0ft4DSfw==" }, "Macross.Json.Extensions": { "type": "Transitive", @@ -113,8 +113,8 @@ }, "Microsoft.Bcl.AsyncInterfaces": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==" + "resolved": "8.0.0", + "contentHash": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==" }, "Microsoft.Bcl.HashCode": { "type": "Transitive", @@ -128,8 +128,8 @@ }, "Microsoft.EntityFrameworkCore.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "X7wSSBNFRuN8j8M9HDYG7rPpEeyhY+PdJZR9rftmgvsZH0eK5+bZ3b3As8iO4rLEpjsBzDnrgSIY6q2F3HQatw==" + "resolved": "8.0.14", + "contentHash": "Om8/jdWyx9eKFkA1YEgxk13KjGIzA8teLgG7iNFunsI2+MT6UT54Eb4t6oe4NQlIaACj5voUe6szVAQe9GKwDA==" }, "Microsoft.Extensions.Configuration": { "type": "Transitive", @@ -219,8 +219,8 @@ }, "Microsoft.Extensions.DependencyInjection.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==" + "resolved": "8.0.2", + "contentHash": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==" }, "Microsoft.Extensions.Diagnostics": { "type": "Transitive", @@ -234,29 +234,28 @@ }, "Microsoft.Extensions.Diagnostics.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==", + "resolved": "8.0.1", + "contentHash": "elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", - "System.Diagnostics.DiagnosticSource": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "Wtylr3ucMUQ+/6x5ngRtBQ0D0TVloWE3hbwUEhwE16OZHB66uqAEVnEvcAXxW2IFuVAuEHMXX5GebfkbSZQSTw==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.6", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.1", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.14", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.3", "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "GiHK4B5Xsf5YzL73kup2zJoJfDx5RJYBd0LZN6dx8XyOSoZnh7NNrMP+vTLxAJVp//JxHk0KIhBnW9YuFrSVig==" + "resolved": "8.0.14", + "contentHash": "se5sdveMiA3PUOWchOZXY/sGA50MrJ/Mg/G6CdQBtyA4MLySNRilVCi23YT90RAwqvI2uQEk5+buxYdpAfuwpA==" }, "Microsoft.Extensions.FileProviders.Abstractions": { "type": "Transitive", @@ -311,14 +310,14 @@ }, "Microsoft.Extensions.Hosting.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "resolved": "8.0.1", + "contentHash": "nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging": { @@ -333,10 +332,10 @@ }, "Microsoft.Extensions.Logging.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging.Configuration": { @@ -431,42 +430,42 @@ }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "jchWPuXJC4N9g1jZ7ZPSfbDSBfMmIgFw5w9VqAT5A9USdE/10IMT83wL48KkTbR7eHdphghe06iGKk7IPhYweA==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "21.0.2" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Messaging.RabbitMQ": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "/tj7IO/SHYXNRfxh7iIMms9TurhtCIozZp5lDFvd/WkPgKWZyyyZH8wxkNb9r7jIh/vXkrGJcPCxR30uoET+7g==", + "resolved": "2.0.4", + "contentHash": "tmEERdnqJq1STVGx30+wVyj7AtvtT8K2j/59lSiZ7k58ZdRku601Gs6k1KZ/sfGeobCjaB4gI7GROxK+lN6gbg==", "dependencies": { - "Monai.Deploy.Messaging": "2.0.3", - "Polly": "8.4.0", + "Monai.Deploy.Messaging": "2.0.4", + "Polly": "8.5.2", "RabbitMQ.Client": "6.8.1" } }, "Monai.Deploy.Storage": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "ceVSHBPDMxWV7C6TLBoJmJt3X0RQmdPnm+9NU17Zs0TGE58QvSEHn4GJODtK9+ncgUJICjBhPFcNHV40ybEepQ==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.105", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", - "Monai.Deploy.Storage.S3Policy": "1.0.1", - "System.IO.Abstractions": "21.0.2" + "AWSSDK.SecurityToken": "3.7.401.68", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", + "Monai.Deploy.Storage.S3Policy": "1.0.2", + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage.S3Policy": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "mgLlLRphh+vrVKen72jfEzBcoOhAzCjavGMUzWIjIFh5avmb2RJNbQERLSISOCjWnqPscc/xSPKFUUpLMOLdYw==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, @@ -477,16 +476,16 @@ }, "Polly": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "z2EeUutuy49jBQyZ5s2FUuTCGx3GCzJ0cJ2HbjWwks94TsC6bKTtAHKBkMZOa/DyYRl5yIX7MshvMTWl1J6RNg==", + "resolved": "8.5.2", + "contentHash": "vbXsGgkG86nG+TOwY+SmtrGrRHmHH0DQaxtILx//d3Dz/ocJ8izSNYzdvU2gEtWa/LDD8zJLvD3HdjEkdlvkhg==", "dependencies": { - "Polly.Core": "8.4.0" + "Polly.Core": "8.5.2" } }, "Polly.Core": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "3AZxuP//pxOeBo9tQs7/tz4Z5TTbu4BYfjpaXZD0JYKJo98ngN9TMUz1nybh4k0ykWkMBpGZALV/AmVIE3ew7A==" + "resolved": "8.5.2", + "contentHash": "1MJKdxv4zwDmiWvYvVN24DsrWUfgQ4F83voH8bhbtLMdPuGy8CfTUzsgQhvyrl1a7hrM6f/ydwLVdVUI0xooUw==" }, "RabbitMQ.Client": { "type": "Transitive", @@ -515,11 +514,6 @@ "System.CommandLine": "2.0.0-beta4.22272.1" } }, - "System.Diagnostics.DiagnosticSource": { - "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" - }, "System.Diagnostics.EventLog": { "type": "Transitive", "resolved": "6.0.0", @@ -527,11 +521,11 @@ }, "System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ewYQGK0kzOpfiYCF0P0nqPAnKqGhqiXAWDFeMtQtwJyERA2s7nLx7KEALwDvIFjZvX6677IsPREoLIU9oBOQvA==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "System.Memory": { @@ -546,28 +540,18 @@ }, "System.Text.Encoding.CodePages": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "6.0.1", + "contentHash": "OV04vEWTSDXzaAJCjylOIdjB7Z7QTYQcz4/ATZSiG8PLkZLsbtaADj0Ydj4FdFnqq4PAwEA7SuILE+6ka4cn6A==" }, "System.Text.Encodings.Web": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "8.0.0", + "contentHash": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==" }, "System.Text.Json": { "type": "Transitive", - "resolved": "6.0.9", - "contentHash": "2j16oUgtIzl7Xtk7demG0i/v5aU/ZvULcAnJvPb63U3ZhXJ494UYcxuEj5Fs49i3XDrk5kU/8I+6l9zRCw3cJw==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "6.0.0" - } + "resolved": "8.0.5", + "contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==" }, "System.Threading.Channels": { "type": "Transitive", @@ -581,28 +565,28 @@ }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ViPtOy4lAlmWq9GDEwiE5C9XSgDGHUWMRvVvruI38pbikUXkgu7xnCVW7PYdQOjS+iWWcQHt+U7oyPedfnWSHg==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ii6Xgru3ozRaLezwE/lKAPTdE3ES+S3P3ul+QrMxIP10GN+LF0JAi4aWqb8lxzEAwBMSAeK/QipEpVt4KYlTOg==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "HL7-dotnetcore": "[2.36.0, )", + "HL7-dotnetcore": "[2.39.1, )", "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.6, )", + "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.14, )", "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Messaging.RabbitMQ": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )", - "fo-dicom": "[5.1.2, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Messaging.RabbitMQ": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )", + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.informaticsgateway.client": { @@ -615,14 +599,14 @@ "monai.deploy.informaticsgateway.client.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )" + "Ardalis.GuardClauses": "[4.6.0, )" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )", - "System.IO.Abstractions": "[21.0.2, )" + "Ardalis.GuardClauses": "[4.6.0, )", + "System.IO.Abstractions": "[21.3.1, )" } } } diff --git a/src/Client.Common/Monai.Deploy.InformaticsGateway.Client.Common.csproj b/src/Client.Common/Monai.Deploy.InformaticsGateway.Client.Common.csproj index 5761dac5..57a987ce 100644 --- a/src/Client.Common/Monai.Deploy.InformaticsGateway.Client.Common.csproj +++ b/src/Client.Common/Monai.Deploy.InformaticsGateway.Client.Common.csproj @@ -25,7 +25,7 @@ false - + diff --git a/src/Client.Common/Test/Monai.Deploy.InformaticsGateway.Client.Common.Test.csproj b/src/Client.Common/Test/Monai.Deploy.InformaticsGateway.Client.Common.Test.csproj index 92aabd57..0ab49cc1 100644 --- a/src/Client.Common/Test/Monai.Deploy.InformaticsGateway.Client.Common.Test.csproj +++ b/src/Client.Common/Test/Monai.Deploy.InformaticsGateway.Client.Common.Test.csproj @@ -22,12 +22,12 @@ true - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/src/Client.Common/Test/packages.lock.json b/src/Client.Common/Test/packages.lock.json index 108f36f8..7e2db4a2 100644 --- a/src/Client.Common/Test/packages.lock.json +++ b/src/Client.Common/Test/packages.lock.json @@ -4,24 +4,24 @@ "net8.0": { "Ardalis.GuardClauses": { "type": "Direct", - "requested": "[4.5.0, )", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "requested": "[4.6.0, )", + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "coverlet.collector": { "type": "Direct", - "requested": "[6.0.2, )", - "resolved": "6.0.2", - "contentHash": "bJShQ6uWRTQ100ZeyiMqcFlhP7WJ+bCuabUs885dJiBEzMsJMSFr7BOyeCw4rgvQokteGi5rKQTlkhfQPUXg2A==" + "requested": "[6.0.4, )", + "resolved": "6.0.4", + "contentHash": "lkhqpF8Pu2Y7IiN7OntbsTtdbpR1syMsm2F3IgX6ootA4ffRqWL5jF7XipHuZQTdVuWG/gVAAcf8mjk8Tz0xPg==" }, "Microsoft.NET.Test.Sdk": { "type": "Direct", - "requested": "[17.10.0, )", - "resolved": "17.10.0", - "contentHash": "0/2HeACkaHEYU3wc83YlcD2Fi4LMtECJjqrtvw0lPi9DCEa35zSPt1j4fuvM8NagjDqJuh1Ja35WcRtn1Um6/A==", + "requested": "[17.13.0, )", + "resolved": "17.13.0", + "contentHash": "W19wCPizaIC9Zh47w8wWI/yxuqR7/dtABwOrc8r2jX/8mUNxM2vw4fXDh+DJTeogxV+KzKwg5jNNGQVwf3LXyA==", "dependencies": { - "Microsoft.CodeCoverage": "17.10.0", - "Microsoft.TestPlatform.TestHost": "17.10.0" + "Microsoft.CodeCoverage": "17.13.0", + "Microsoft.TestPlatform.TestHost": "17.13.0" } }, "Moq": { @@ -69,23 +69,23 @@ }, "Microsoft.CodeCoverage": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "yC7oSlnR54XO5kOuHlVOKtxomNNN1BWXX8lK1G2jaPXT9sUok7kCOoA4Pgs0qyFaCtMrNsprztYMeoEGqCm4uA==" + "resolved": "17.13.0", + "contentHash": "9LIUy0y+DvUmEPtbRDw6Bay3rzwqFV8P4efTrK4CZhQle3M/QwLPjISghfcolmEGAPWxuJi6m98ZEfk4VR4Lfg==" }, "Microsoft.TestPlatform.ObjectModel": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "KkwhjQevuDj0aBRoPLY6OLAhGqbPUEBuKLbaCs0kUVw29qiOYncdORd4mLVJbn9vGZ7/iFGQ/+AoJl0Tu5Umdg==", + "resolved": "17.13.0", + "contentHash": "bt0E0Dx+iqW97o4A59RCmUmz/5NarJ7LRL+jXbSHod72ibL5XdNm1Ke+UO5tFhBG4VwHLcSjqq9BUSblGNWamw==", "dependencies": { "System.Reflection.Metadata": "1.6.0" } }, "Microsoft.TestPlatform.TestHost": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "LWpMdfqhHvcUkeMCvNYJO8QlPLlYz9XPPb+ZbaXIKhdmjAV0wqTSrTiW5FLaf7RRZT50AQADDOYMOe0HxDxNgA==", + "resolved": "17.13.0", + "contentHash": "9GGw08Dc3AXspjekdyTdZ/wYWFlxbgcF0s7BKxzVX+hzAwpifDOdxM+ceVaaJSQOwqt3jtuNlHn3XTpKUS9x9Q==", "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "17.10.0", + "Microsoft.TestPlatform.ObjectModel": "17.13.0", "Newtonsoft.Json": "13.0.1" } }, @@ -147,7 +147,7 @@ "monai.deploy.informaticsgateway.client.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )" + "Ardalis.GuardClauses": "[4.6.0, )" } } } diff --git a/src/Client.Common/packages.lock.json b/src/Client.Common/packages.lock.json old mode 100755 new mode 100644 index da9a2e2d..3a4f1225 --- a/src/Client.Common/packages.lock.json +++ b/src/Client.Common/packages.lock.json @@ -4,15 +4,15 @@ "net8.0": { "Ardalis.GuardClauses": { "type": "Direct", - "requested": "[4.5.0, )", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "requested": "[4.6.0, )", + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "Microsoft.NET.ILLink.Tasks": { "type": "Direct", - "requested": "[8.0.7, )", - "resolved": "8.0.7", - "contentHash": "iI52ptEKby2ymQ6B7h4TWbFmm85T4VvLgc/HvS45Yr3lgi4IIFbQtjON3bQbX/Vc94jXNSLvrDOp5Kh7SJyFYQ==" + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "4U2fd7PexNKrK5ZqfqIcXZj9/lRRjFsLgA/pxuFQTuGQuLYP/+7yACz/j7EmWbEj/fspOf4mafi/vHIy/rKDzQ==" } } } diff --git a/src/Client/Test/Monai.Deploy.InformaticsGateway.Client.Test.csproj b/src/Client/Test/Monai.Deploy.InformaticsGateway.Client.Test.csproj index 81fc7a69..be84c02f 100644 --- a/src/Client/Test/Monai.Deploy.InformaticsGateway.Client.Test.csproj +++ b/src/Client/Test/Monai.Deploy.InformaticsGateway.Client.Test.csproj @@ -25,11 +25,11 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive - + runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Client/Test/packages.lock.json b/src/Client/Test/packages.lock.json index e36e08d5..72699c84 100644 --- a/src/Client/Test/packages.lock.json +++ b/src/Client/Test/packages.lock.json @@ -4,18 +4,18 @@ "net8.0": { "coverlet.collector": { "type": "Direct", - "requested": "[6.0.2, )", - "resolved": "6.0.2", - "contentHash": "bJShQ6uWRTQ100ZeyiMqcFlhP7WJ+bCuabUs885dJiBEzMsJMSFr7BOyeCw4rgvQokteGi5rKQTlkhfQPUXg2A==" + "requested": "[6.0.4, )", + "resolved": "6.0.4", + "contentHash": "lkhqpF8Pu2Y7IiN7OntbsTtdbpR1syMsm2F3IgX6ootA4ffRqWL5jF7XipHuZQTdVuWG/gVAAcf8mjk8Tz0xPg==" }, "Microsoft.NET.Test.Sdk": { "type": "Direct", - "requested": "[17.10.0, )", - "resolved": "17.10.0", - "contentHash": "0/2HeACkaHEYU3wc83YlcD2Fi4LMtECJjqrtvw0lPi9DCEa35zSPt1j4fuvM8NagjDqJuh1Ja35WcRtn1Um6/A==", + "requested": "[17.13.0, )", + "resolved": "17.13.0", + "contentHash": "W19wCPizaIC9Zh47w8wWI/yxuqR7/dtABwOrc8r2jX/8mUNxM2vw4fXDh+DJTeogxV+KzKwg5jNNGQVwf3LXyA==", "dependencies": { - "Microsoft.CodeCoverage": "17.10.0", - "Microsoft.TestPlatform.TestHost": "17.10.0" + "Microsoft.CodeCoverage": "17.13.0", + "Microsoft.TestPlatform.TestHost": "17.13.0" } }, "Moq": { @@ -46,29 +46,29 @@ }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AspNetCore.HealthChecks.MongoDb": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "/IZb7dDJBalyF7eE1/Ql5zFcTqVSAejYIPpzMThzgTj049GhvuYWdMJsMf+Y2+u1vUlG0vy0PKE763XdIuaoFg==", + "resolved": "8.1.0", + "contentHash": "NuVDrj7UXBVniePh6JnuM8ryZRWdOIGOBes3owg2WQV/1NPntpWqX/DYaP6SBduHULUp8XRbwAui8qKQAW4SDA==", "dependencies": { "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", - "MongoDB.Driver": "2.22.0" + "MongoDB.Driver": "2.28.0" } }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.304.15", - "contentHash": "XLfl4/wuTDWXH73FjGUx5P6Jf6FNLTlyVwWvQ0b/WyBOtZVJxPlCKUTYDn06VdqcLGg3uPP6FKJqnplKsnMHMw==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.105", - "contentHash": "axqpqdA4QZvHzEdGDLk5/IpPQsUTIcnVDulz4uyE+UEeYAHpFcp/BNQxmmIU4Gdv0G5KwQWKiaUaZPuLVN0Esg==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.304.15, 4.0.0)" + "AWSSDK.Core": "[3.7.402.25, 4.0.0)" } }, "Castle.Core": { @@ -81,8 +81,8 @@ }, "CommunityToolkit.HighPerformance": { "type": "Transitive", - "resolved": "8.2.2", - "contentHash": "+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==" + "resolved": "8.3.2", + "contentHash": "1Os81ua0FmIOtiSgOk5C1KBraQ3SDfxs/7BG4qDagm48nGplr//lAVqLH9I2TLDVqRFdhqTUaEITFA5Ho/Ovkw==" }, "DnsClient": { "type": "Transitive", @@ -111,26 +111,26 @@ }, "fo-dicom": { "type": "Transitive", - "resolved": "5.1.2", - "contentHash": "2lM76Vq+GRdwyY3BQiUJ+V6yxdFiOG4ysLJC7qNTxLsq/1pr5ZTTXiIzWQa+uJ0MuKnzzFogV5+meDflsyjs2g==", + "resolved": "5.2.1", + "contentHash": "Oa6raonOj/Xm+a1j3O89OlUXJIF55jLAKjCuXKINYJMJ+hJ/9Al1YOxPs1hut8DBKvHbgYtgdRFtqGNS+Qt6Uw==", "dependencies": { - "CommunityToolkit.HighPerformance": "8.2.2", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "CommunityToolkit.HighPerformance": "8.3.2", + "Microsoft.Bcl.AsyncInterfaces": "8.0.0", "Microsoft.Bcl.HashCode": "1.1.1", "Microsoft.Extensions.DependencyInjection": "6.0.1", "Microsoft.Extensions.Logging": "6.0.0", "Microsoft.Extensions.Options": "6.0.0", "System.Buffers": "4.5.1", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "6.0.9", + "System.Text.Encoding.CodePages": "6.0.1", + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.5", "System.Threading.Channels": "6.0.0" } }, "HL7-dotnetcore": { "type": "Transitive", - "resolved": "2.36.0", - "contentHash": "N1HLMeIqYuY+4O69ItgZJoDBnnpNkK5N2pClceTJ2nFJxsP48iCsA4iz3tm43Yszi4r/vaThoc3UoLBfGP3vKw==" + "resolved": "2.39.1", + "contentHash": "xbgykLlAr644SfYY2oxnpYYto+JFYLuUHt00hRTlhpB+5DiFC2oVSVRA+8yyq/lmkjTNidtTbN9nyK0ft4DSfw==" }, "Humanizer.Core": { "type": "Transitive", @@ -144,16 +144,16 @@ }, "Microsoft.AspNetCore.Authentication.JwtBearer": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "rwxaZYHips5M9vqxRkGfJthTx+Ws4O4yCuefn17J371jL3ouC5Ker43h2hXb5yd9BMnImE9rznT75KJHm6bMgg==", + "resolved": "8.0.14", + "contentHash": "e19jmWJAQucbPYk3/fihJMDCYfv6CO+Qwp34pOehUSCbaHROw6FZ551SN1D0s9Btl0U/QHfuwFq6Z8Oa2ktE6g==", "dependencies": { - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.0.3" + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.1.2" } }, "Microsoft.Bcl.AsyncInterfaces": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==" + "resolved": "8.0.0", + "contentHash": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==" }, "Microsoft.Bcl.HashCode": { "type": "Transitive", @@ -211,84 +211,84 @@ }, "Microsoft.CodeCoverage": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "yC7oSlnR54XO5kOuHlVOKtxomNNN1BWXX8lK1G2jaPXT9sUok7kCOoA4Pgs0qyFaCtMrNsprztYMeoEGqCm4uA==" + "resolved": "17.13.0", + "contentHash": "9LIUy0y+DvUmEPtbRDw6Bay3rzwqFV8P4efTrK4CZhQle3M/QwLPjISghfcolmEGAPWxuJi6m98ZEfk4VR4Lfg==" }, "Microsoft.Data.Sqlite.Core": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "umhZ0ZF2RI81rGFTnYmCxI+Euj4Aqe/6Y4+8CxN9OVJNGDNIqB5laJ3wxQTU8zXCcm2k9F7FL+/6RVoOT4z1Fw==", + "resolved": "8.0.14", + "contentHash": "MT/9fCazlL4T10BwCQCxvUXOmtU4rR1qDl2mpePFhmuXONafUjXUf8FH94IR79ISxrGVHxsOWvwGzgKi6RSE/g==", "dependencies": { "SQLitePCLRaw.core": "2.1.6" } }, "Microsoft.EntityFrameworkCore": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "Ms5e5QuBAjVIuQsGumeLvkgMiOpnj6wxPvwBIoe1NfTkseWK4NZYztnhgDlpkCPkrUmJEXLv69kl349Ours30Q==", + "resolved": "8.0.14", + "contentHash": "HNn+NPKCm7rR7ij7IRCCbuImaMulFJGloyIbMwi3Ews77RsthM8gxpTZciFLgRYPsBtszKpdIClEwnWmP0vjUg==", "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "8.0.6", - "Microsoft.EntityFrameworkCore.Analyzers": "8.0.6", - "Microsoft.Extensions.Caching.Memory": "8.0.0", - "Microsoft.Extensions.Logging": "8.0.0" + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.14", + "Microsoft.EntityFrameworkCore.Analyzers": "8.0.14", + "Microsoft.Extensions.Caching.Memory": "8.0.1", + "Microsoft.Extensions.Logging": "8.0.1" } }, "Microsoft.EntityFrameworkCore.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "X7wSSBNFRuN8j8M9HDYG7rPpEeyhY+PdJZR9rftmgvsZH0eK5+bZ3b3As8iO4rLEpjsBzDnrgSIY6q2F3HQatw==" + "resolved": "8.0.14", + "contentHash": "Om8/jdWyx9eKFkA1YEgxk13KjGIzA8teLgG7iNFunsI2+MT6UT54Eb4t6oe4NQlIaACj5voUe6szVAQe9GKwDA==" }, "Microsoft.EntityFrameworkCore.Analyzers": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "fDNtuQ4lAaPaCOlsrwUck/GvnF4QLeDpMmE1L5QtxZpMSmWfnL2/vk8sDL9OVTWcfprooI9V5MNpIx3/Tq5ehg==" + "resolved": "8.0.14", + "contentHash": "lzNb3s4t5JDMHGoUFuX/f977dFythvmzGFJxvjlhExdiATPKQfquo2NM0uX8Kelfq04jRljpdbRzcsSsK1q9Tw==" }, "Microsoft.EntityFrameworkCore.Design": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "4OT+mH+8EB4Kfn1ENpDx2Ssx459j200gvdhDOKq5lkHmHzkRpmEDKS5GfqaLZvBLJKWu1FVGQ7Wnczcjb0hX4g==", + "resolved": "8.0.14", + "contentHash": "ncCvbJYGXK7eSOVqfQNXLaxMWKGaKSYX1VJZjyJXg3IxxmF50B8p/isprgrVLR+SlQwTG1lmhPAPn0dOvCqlrw==", "dependencies": { "Humanizer.Core": "2.14.1", "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0", - "Microsoft.EntityFrameworkCore.Relational": "8.0.6", - "Microsoft.Extensions.DependencyModel": "8.0.0", + "Microsoft.EntityFrameworkCore.Relational": "8.0.14", + "Microsoft.Extensions.DependencyModel": "8.0.2", "Mono.TextTemplating": "2.2.1" } }, "Microsoft.EntityFrameworkCore.Relational": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "chhfmLusCGLGvNYtvMji6KGQlduPDnJsStG/LjS8qJhFWJDDzTZpSr2LHowewcxMrMo/Axc6Jwe+WwSi/vlkTg==", + "resolved": "8.0.14", + "contentHash": "cPEeIk9nFO3+hxj9tp5AvTFdcTZkVPJCOFUiagbf37KhPGtiG0ZWpl15xOzLYTDAYjF5kxH/jcuDYGlLACJEmA==", "dependencies": { - "Microsoft.EntityFrameworkCore": "8.0.6", + "Microsoft.EntityFrameworkCore": "8.0.14", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" } }, "Microsoft.EntityFrameworkCore.Sqlite": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "nC4cZN4zReTb22qd9WDU0eDmlXvkyf2g2pqQ3VIHJbkpJcdWSY/PDgwGpbpShsVcAjXbkjGiUcv9aGwa61xQPw==", + "resolved": "8.0.14", + "contentHash": "iqrhkOirZ9mm3Yu+ut9698VDn6WSykfr9NMECIe6gObUZLxAsg28f1JmIjx2n4pKFm5Uz5sYJ3k4AUnrJbgUag==", "dependencies": { - "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.6", + "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.14", "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" } }, "Microsoft.EntityFrameworkCore.Sqlite.Core": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "87xfPtqSouxWWdynYZv/rubd0rOUeiN9+XeoMWQzpZm/5svH1TuvzFODGIY0zKuXS18NiOFyHl9N6///eaEs/Q==", + "resolved": "8.0.14", + "contentHash": "TcbHy/SdKTcrxlgx14uicVMqrBTu3SP3STGicR+JzYG4I3mVtsBgqtArt6mmUtA7UZj7sogXJ6EFpSyNsJU8Zg==", "dependencies": { - "Microsoft.Data.Sqlite.Core": "8.0.6", - "Microsoft.EntityFrameworkCore.Relational": "8.0.6", - "Microsoft.Extensions.DependencyModel": "8.0.0" + "Microsoft.Data.Sqlite.Core": "8.0.14", + "Microsoft.EntityFrameworkCore.Relational": "8.0.14", + "Microsoft.Extensions.DependencyModel": "8.0.2" } }, "Microsoft.EntityFrameworkCore.Tools": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "UsrAqShiZQBK2lcZsXoyFPccbiLRd2az1uXe1he2z4r2TUYyxNQFy+eysGCpZg0g62I4jFRJfvXIAmCi4QCUpg==", + "resolved": "8.0.14", + "contentHash": "nWlJaFEvT7HpLkOusyReeQPeHsl5EUIBlI5Pr05SYhkWFQ7KGLmUNdv4j1aAjrO+x42Enqr7fu7r3MXLPQqImg==", "dependencies": { - "Microsoft.EntityFrameworkCore.Design": "8.0.6" + "Microsoft.EntityFrameworkCore.Design": "8.0.14" } }, "Microsoft.Extensions.ApiDescription.Server": { @@ -306,13 +306,13 @@ }, "Microsoft.Extensions.Caching.Memory": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==", + "resolved": "8.0.1", + "contentHash": "HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==", "dependencies": { "Microsoft.Extensions.Caching.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", "Microsoft.Extensions.Primitives": "8.0.0" } }, @@ -335,16 +335,16 @@ }, "Microsoft.Extensions.Configuration.Binder": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "mBMoXLsr5s1y2zOHWmKsE9veDcx8h1x/c3rz4baEdQKTeDcmQAPNbB54Pi/lhFO3K431eEq6PFbMgLaa6PHFfA==", + "resolved": "8.0.2", + "contentHash": "7IQhGK+wjyGrNsPBjJcZwWAr+Wf6D4+TwOptUt77bWtgNkiV8tDEbhFS+dDamtQFZ2X7kWG9m71iZQRj2x3zgQ==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" } }, "Microsoft.Extensions.Configuration.FileExtensions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "McP+Lz/EKwvtCv48z0YImw+L1gi1gy5rHhNaNIY2CrjloV+XY8gydT8DjMR6zWeL13AFK+DioVpppwAuO1Gi1w==", + "resolved": "8.0.1", + "contentHash": "EJzSNO9oaAXnTdtdNO6npPRsIIeZCBSNmdQ091VDO7fBiOtJAAeEq6dtrVXIi3ZyjC5XRSAtVvF8SzcneRHqKQ==", "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", @@ -355,72 +355,66 @@ }, "Microsoft.Extensions.Configuration.Json": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "C2wqUoh9OmRL1akaCcKSTmRU8z0kckfImG7zLNI8uyi47Lp+zd5LWAD17waPQEqCz3ioWOCrFUo+JJuoeZLOBw==", + "resolved": "8.0.1", + "contentHash": "L89DLNuimOghjV3tLx0ArFDwVEJD6+uGB3BMCMX01kaLzXkaXHb2021xOMl2QOxUxbdePKUZsUY7n2UUkycjRg==", "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "System.Text.Json": "8.0.0" + "Microsoft.Extensions.Configuration.FileExtensions": "8.0.1", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0" } }, "Microsoft.Extensions.DependencyInjection": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "resolved": "8.0.1", + "contentHash": "BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.DependencyInjection.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==" + "resolved": "8.0.2", + "contentHash": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==" }, "Microsoft.Extensions.DependencyModel": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==", - "dependencies": { - "System.Text.Encodings.Web": "8.0.0", - "System.Text.Json": "8.0.0" - } + "resolved": "8.0.2", + "contentHash": "mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==" }, "Microsoft.Extensions.Diagnostics.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==", + "resolved": "8.0.1", + "contentHash": "elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", - "System.Diagnostics.DiagnosticSource": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "Wtylr3ucMUQ+/6x5ngRtBQ0D0TVloWE3hbwUEhwE16OZHB66uqAEVnEvcAXxW2IFuVAuEHMXX5GebfkbSZQSTw==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.6", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.1", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.14", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.3", "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "GiHK4B5Xsf5YzL73kup2zJoJfDx5RJYBd0LZN6dx8XyOSoZnh7NNrMP+vTLxAJVp//JxHk0KIhBnW9YuFrSVig==" + "resolved": "8.0.14", + "contentHash": "se5sdveMiA3PUOWchOZXY/sGA50MrJ/Mg/G6CdQBtyA4MLySNRilVCi23YT90RAwqvI2uQEk5+buxYdpAfuwpA==" }, "Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "paBCLbj7dMnPSlZ+dkD/Q8KNmI/UZbnCrBVMbX/GZ/6Cs787GSrWawX1UtiCDPfsVGvoaHhQ5oyWHoXrvhb+1g==", + "resolved": "8.0.14", + "contentHash": "4b/wu7E9oNd994GQyehsJkoLAC8BVrRkO6rzWuWTmHm0w0A5m4giPx35BWd7nJ5h0mq2Cfk0ueHlBQo/ICyfJA==", "dependencies": { - "Microsoft.EntityFrameworkCore.Relational": "8.0.6", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.6" + "Microsoft.EntityFrameworkCore.Relational": "8.0.14", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.14" } }, "Microsoft.Extensions.FileProviders.Abstractions": { @@ -448,46 +442,46 @@ }, "Microsoft.Extensions.Hosting.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "resolved": "8.0.1", + "contentHash": "nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "resolved": "8.0.1", + "contentHash": "4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==", "dependencies": { - "Microsoft.Extensions.DependencyInjection": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0" + "Microsoft.Extensions.DependencyInjection": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Logging.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging.Configuration": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "ixXXV0G/12g6MXK65TLngYN9V5hQQRuV+fZi882WIoVJT7h5JvoYoxTEwCgdqwLjSneqh1O+66gM8sMr9z/rsQ==", + "resolved": "8.0.1", + "contentHash": "QWwTrsgOnJMmn+XUslm8D2H1n3PkP/u/v52FODtyBc/k4W9r3i2vcXXeeX/upnzllJYRRbrzVzT0OclfNJtBJA==", "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.Configuration.Binder": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.Configuration.Binder": "8.0.2", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0" } }, @@ -519,49 +513,49 @@ }, "Microsoft.IdentityModel.Abstractions": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "cfPUWdjigLIRIJSKz3uaZxShgf86RVDXHC1VEEchj1gnY25akwPYpbrfSoIGDCqA9UmOMdlctq411+2pAViFow==" + "resolved": "7.1.2", + "contentHash": "33eTIA2uO/L9utJjZWbKsMSVsQf7F8vtd6q5mQX7ZJzNvCpci5fleD6AeANGlbbb7WX7XKxq9+Dkb5e3GNDrmQ==" }, "Microsoft.IdentityModel.JsonWebTokens": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "vxjHVZbMKD3rVdbvKhzAW+7UiFrYToUVm3AGmYfKSOAwyhdLl/ELX1KZr+FaLyyS5VReIzWRWJfbOuHM9i6ywg==", + "resolved": "7.1.2", + "contentHash": "cloLGeZolXbCJhJBc5OC05uhrdhdPL6MWHuVUnkkUvPDeK7HkwThBaLZ1XjBQVk9YhxXE2OvHXnKi0PLleXxDg==", "dependencies": { - "Microsoft.IdentityModel.Tokens": "7.0.3" + "Microsoft.IdentityModel.Tokens": "7.1.2" } }, "Microsoft.IdentityModel.Logging": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "b6GbGO+2LOTBEccHhqoJsOsmemG4A/MY+8H0wK/ewRhiG+DCYwEnucog1cSArPIY55zcn+XdZl0YEiUHkpDISQ==", + "resolved": "7.1.2", + "contentHash": "YCxBt2EeJP8fcXk9desChkWI+0vFqFLvBwrz5hBMsoh0KJE6BC66DnzkdzkJNqMltLromc52dkdT206jJ38cTw==", "dependencies": { - "Microsoft.IdentityModel.Abstractions": "7.0.3" + "Microsoft.IdentityModel.Abstractions": "7.1.2" } }, "Microsoft.IdentityModel.Protocols": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "BtwR+tctBYhPNygyZmt1Rnw74GFrJteW+1zcdIgyvBCjkek6cNwPPqRfdhzCv61i+lwyNomRi8+iI4QKd4YCKA==", + "resolved": "7.1.2", + "contentHash": "SydLwMRFx6EHPWJ+N6+MVaoArN1Htt92b935O3RUWPY1yUF63zEjvd3lBu79eWdZUwedP8TN2I5V9T3nackvIQ==", "dependencies": { - "Microsoft.IdentityModel.Logging": "7.0.3", - "Microsoft.IdentityModel.Tokens": "7.0.3" + "Microsoft.IdentityModel.Logging": "7.1.2", + "Microsoft.IdentityModel.Tokens": "7.1.2" } }, "Microsoft.IdentityModel.Protocols.OpenIdConnect": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "W97TraHApDNArLwpPcXfD+FZH7njJsfEwZE9y9BoofeXMS8H0LBBobz0VOmYmMK4mLdOKxzN7SFT3Ekg0FWI3Q==", + "resolved": "7.1.2", + "contentHash": "6lHQoLXhnMQ42mGrfDkzbIOR3rzKM1W1tgTeMPLgLCqwwGw0d96xFi/UiX/fYsu7d6cD5MJiL3+4HuI8VU+sVQ==", "dependencies": { - "Microsoft.IdentityModel.Protocols": "7.0.3", - "System.IdentityModel.Tokens.Jwt": "7.0.3" + "Microsoft.IdentityModel.Protocols": "7.1.2", + "System.IdentityModel.Tokens.Jwt": "7.1.2" } }, "Microsoft.IdentityModel.Tokens": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "wB+LlbDjhnJ98DULjmFepqf9eEMh/sDs6S6hFh68iNRHmwollwhxk+nbSSfpA5+j+FbRyNskoaY4JsY1iCOKCg==", + "resolved": "7.1.2", + "contentHash": "oICJMqr3aNEDZOwnH5SK49bR6Z4aX0zEAnOLuhloumOSuqnNq+GWBdQyrgILnlcT5xj09xKCP/7Y7gJYB+ls/g==", "dependencies": { - "Microsoft.IdentityModel.Logging": "7.0.3" + "Microsoft.IdentityModel.Logging": "7.1.2" } }, "Microsoft.NETCore.Platforms": { @@ -571,23 +565,23 @@ }, "Microsoft.OpenApi": { "type": "Transitive", - "resolved": "1.6.14", - "contentHash": "tTaBT8qjk3xINfESyOPE2rIellPvB7qpVqiWiyA/lACVvz+xOGiXhFUfohcx82NLbi5avzLW0lx+s6oAqQijfw==" + "resolved": "1.6.23", + "contentHash": "tZ1I0KXnn98CWuV8cpI247A17jaY+ILS9vvF7yhI0uPPEqF4P1d7BWL5Uwtel10w9NucllHB3nTkfYTAcHAh8g==" }, "Microsoft.TestPlatform.ObjectModel": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "KkwhjQevuDj0aBRoPLY6OLAhGqbPUEBuKLbaCs0kUVw29qiOYncdORd4mLVJbn9vGZ7/iFGQ/+AoJl0Tu5Umdg==", + "resolved": "17.13.0", + "contentHash": "bt0E0Dx+iqW97o4A59RCmUmz/5NarJ7LRL+jXbSHod72ibL5XdNm1Ke+UO5tFhBG4VwHLcSjqq9BUSblGNWamw==", "dependencies": { "System.Reflection.Metadata": "1.6.0" } }, "Microsoft.TestPlatform.TestHost": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "LWpMdfqhHvcUkeMCvNYJO8QlPLlYz9XPPb+ZbaXIKhdmjAV0wqTSrTiW5FLaf7RRZT50AQADDOYMOe0HxDxNgA==", + "resolved": "17.13.0", + "contentHash": "9GGw08Dc3AXspjekdyTdZ/wYWFlxbgcF0s7BKxzVX+hzAwpifDOdxM+ceVaaJSQOwqt3jtuNlHn3XTpKUS9x9Q==", "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "17.10.0", + "Microsoft.TestPlatform.ObjectModel": "17.13.0", "Newtonsoft.Json": "13.0.1" } }, @@ -614,73 +608,73 @@ }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "jchWPuXJC4N9g1jZ7ZPSfbDSBfMmIgFw5w9VqAT5A9USdE/10IMT83wL48KkTbR7eHdphghe06iGKk7IPhYweA==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "21.0.2" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Messaging.RabbitMQ": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "/tj7IO/SHYXNRfxh7iIMms9TurhtCIozZp5lDFvd/WkPgKWZyyyZH8wxkNb9r7jIh/vXkrGJcPCxR30uoET+7g==", + "resolved": "2.0.4", + "contentHash": "tmEERdnqJq1STVGx30+wVyj7AtvtT8K2j/59lSiZ7k58ZdRku601Gs6k1KZ/sfGeobCjaB4gI7GROxK+lN6gbg==", "dependencies": { - "Monai.Deploy.Messaging": "2.0.3", - "Polly": "8.4.0", + "Monai.Deploy.Messaging": "2.0.4", + "Polly": "8.5.2", "RabbitMQ.Client": "6.8.1" } }, "Monai.Deploy.Security": { "type": "Transitive", - "resolved": "1.0.0", - "contentHash": "q0dQiOpOoHX4a3XkueqFRx51WOrQpW1Lwj7e4oqI6aOBeUlA9CPMdZ4+4BlemXc/1A5IClrPugp/owZ1NJ2Wxg==", + "resolved": "1.0.1", + "contentHash": "GrGj/addv+V5MgZuHBXV68M9PtyzrPlvHibyaHPQq602wtK4CYqPGR5P4VJgM2ZuiW89vEKbhd07sxTFkG9Muw==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", - "Microsoft.AspNetCore.Authentication.JwtBearer": "8.0.0", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.AspNetCore.Authentication.JwtBearer": "8.0.14", "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Configuration": "8.0.0" + "Microsoft.Extensions.Logging": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.3", + "Microsoft.Extensions.Logging.Configuration": "8.0.1" } }, "Monai.Deploy.Storage": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "ceVSHBPDMxWV7C6TLBoJmJt3X0RQmdPnm+9NU17Zs0TGE58QvSEHn4GJODtK9+ncgUJICjBhPFcNHV40ybEepQ==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.105", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", - "Monai.Deploy.Storage.S3Policy": "1.0.1", - "System.IO.Abstractions": "21.0.2" + "AWSSDK.SecurityToken": "3.7.401.68", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", + "Monai.Deploy.Storage.S3Policy": "1.0.2", + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage.MinIO": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "7wJ0ozvVVv8xPxQahHm0GgBKl0ZKTOJnMVbRXQW1QoO3pijlsXGZux310gkDEruDZSjZMS4tw6+6eKDozHfbfA==", + "resolved": "1.0.2", + "contentHash": "H73iUS64UwZXK8ZxNUc3DvokEcptpcoYgY+FMJGlotCffGhqrK8iJ18THR0gg9Io5UgIv24mdu1jbUn/Cz2rhA==", "dependencies": { "Minio": "6.0.2", - "Monai.Deploy.Storage": "1.0.1", - "Monai.Deploy.Storage.S3Policy": "1.0.1" + "Monai.Deploy.Storage": "1.0.2", + "Monai.Deploy.Storage.S3Policy": "1.0.2" } }, "Monai.Deploy.Storage.S3Policy": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "mgLlLRphh+vrVKen72jfEzBcoOhAzCjavGMUzWIjIFh5avmb2RJNbQERLSISOCjWnqPscc/xSPKFUUpLMOLdYw==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, "MongoDB.Bson": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "xQx/qtC2nu9oGiyNqAwfiDpUMweLi0nID677cyKykpwmj5AVMrnd//UwmcmuX95178DeY6rf7cjmA613TQXPiA==", + "resolved": "2.30.0", + "contentHash": "Gg0TQUT3IEntcqdug5a9P6d8iwL5CqOpQjVBCq1hxTbkjxdGdY6a2CPv7II44AO9GYUnORYsS6dDME2b7aqYyg==", "dependencies": { "System.Memory": "4.5.5", "System.Runtime.CompilerServices.Unsafe": "5.0.0" @@ -688,25 +682,25 @@ }, "MongoDB.Driver": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "dMqnZTV6MuvoEI4yFtSvKJdAoN6NeyAEvG8aoxnrLIVd7bR84QxLgpsM1nhK17qkOcIx/IrpMIfrvp5iMnYGBg==", + "resolved": "2.30.0", + "contentHash": "BCG8cNF0+U3h5f/O9fu3ktrYhoESBDems1w06PExfYrn2KjHBHCBdvBRY1cIbysnZVjQAJjGtFV9XgW+hXt7Hg==", "dependencies": { "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "2.25.0", - "MongoDB.Driver.Core": "2.25.0", - "MongoDB.Libmongocrypt": "1.8.2" + "MongoDB.Bson": "2.30.0", + "MongoDB.Driver.Core": "2.30.0", + "MongoDB.Libmongocrypt": "1.12.0" } }, "MongoDB.Driver.Core": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "oN4nLgO5HQEThTg/zqeoHqaO2+q64DBVb4r7BvhaFb0p0TM9jZKnCKvh1EA8d9E9swIz0CgvMrvL1mPyRCZzag==", + "resolved": "2.30.0", + "contentHash": "oepDgu24lo44SljuHmIQ99x6jHISnMC4tLfzQGniQg39xiMD8nxalm1HM9RDZcuZbbWa4F6YLt2AIhWkny3XWA==", "dependencies": { "AWSSDK.SecurityToken": "3.7.100.14", "DnsClient": "1.6.1", "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "2.25.0", - "MongoDB.Libmongocrypt": "1.8.2", + "MongoDB.Bson": "2.30.0", + "MongoDB.Libmongocrypt": "1.12.0", "SharpCompress": "0.30.1", "Snappier": "1.0.0", "System.Buffers": "4.5.1", @@ -715,8 +709,8 @@ }, "MongoDB.Libmongocrypt": { "type": "Transitive", - "resolved": "1.8.2", - "contentHash": "z/8JCULSHM1+mzkau0ivIkU9kIn8JEFFSkmYTSaMaWMMHt96JjUtMKuXxeGNGSnHZ5290ZPKIlQfjoWFk2sKog==" + "resolved": "1.12.0", + "contentHash": "B1X51jrtNacKvxKoaqWeknYeJfQS5aWf6BmVLT5JZerz3AUXFzv8edPskJYqBc3kLy1J2PWzMqqsnyb9g8FtcA==" }, "Mono.TextTemplating": { "type": "Transitive", @@ -733,39 +727,39 @@ }, "NLog": { "type": "Transitive", - "resolved": "5.3.2", - "contentHash": "cQRQZuDMjSyMe9EQBnI9v55YAMMz8GAfFd6fFJ6tc/kXnG7Hze8p1I8MgvWSBG6E36wA8vSxRrlm8uSIG+SENg==" + "resolved": "5.4.0", + "contentHash": "LwMcGSW3soF3/SL68rlJN3Eh3ktrAPycC3zZR/07OYBPraZUu0bygEC7kIN10lUQgMXT4s84Fi1chglGdGrQEg==" }, "NLog.Extensions.Logging": { "type": "Transitive", - "resolved": "5.3.11", - "contentHash": "C3Rg6jmOkM7fNBX9jAoVlYzOwsrxdQzl9sYDK1EpRc7RCdjgs8FC9ivJCSsCu/m4l0w83xiTNz7Y1CzmD3BwZg==", + "resolved": "5.4.0", + "contentHash": "5T19INfbzRywZpyBGoQChsB/R7eHW9hR4Ml9O22NRjJpfltGIJ+rsoCcjwr2/V/E6i3/eXLTQwRAeDMICjWpTA==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", "Microsoft.Extensions.Logging": "8.0.0", - "NLog": "5.3.2" + "NLog": "5.4.0" } }, "NLog.Web.AspNetCore": { "type": "Transitive", - "resolved": "5.3.11", - "contentHash": "yGVMYeeMh1v/DZELN8XMEZYg27/w7O0ypcwaD1+cHLf4yI8zZOM0xS57a8gCBV4QCXegN15Upld+9YzS5M1VvA==", + "resolved": "5.4.0", + "contentHash": "Le6rbipSqeGVygbLGgRwZNMsbjJ+YnoAMJdZVhgjQimXwmYbDNkSswK6Mb32bKoC5aIg5mhw+hpAmgWdegs4Eg==", "dependencies": { - "NLog.Extensions.Logging": "5.3.11" + "NLog.Extensions.Logging": "5.4.0" } }, "Polly": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "z2EeUutuy49jBQyZ5s2FUuTCGx3GCzJ0cJ2HbjWwks94TsC6bKTtAHKBkMZOa/DyYRl5yIX7MshvMTWl1J6RNg==", + "resolved": "8.5.2", + "contentHash": "vbXsGgkG86nG+TOwY+SmtrGrRHmHH0DQaxtILx//d3Dz/ocJ8izSNYzdvU2gEtWa/LDD8zJLvD3HdjEkdlvkhg==", "dependencies": { - "Polly.Core": "8.4.0" + "Polly.Core": "8.5.2" } }, "Polly.Core": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "3AZxuP//pxOeBo9tQs7/tz4Z5TTbu4BYfjpaXZD0JYKJo98ngN9TMUz1nybh4k0ykWkMBpGZALV/AmVIE3ew7A==" + "resolved": "8.5.2", + "contentHash": "1MJKdxv4zwDmiWvYvVN24DsrWUfgQ4F83voH8bhbtLMdPuGy8CfTUzsgQhvyrl1a7hrM6f/ydwLVdVUI0xooUw==" }, "RabbitMQ.Client": { "type": "Transitive", @@ -818,35 +812,35 @@ }, "Swashbuckle.AspNetCore": { "type": "Transitive", - "resolved": "6.6.2", - "contentHash": "+NB4UYVYN6AhDSjW0IJAd1AGD8V33gemFNLPaxKTtPkHB+HaKAKf9MGAEUPivEWvqeQfcKIw8lJaHq6LHljRuw==", + "resolved": "8.0.0", + "contentHash": "K9FzGTxmwfD+7sVf/FTq/TZFHBTXcROgdcg7gLFwKwgvXwaqTtjGVdam27j0kYfgZZyWlOKr+abmtyd2nAd5eA==", "dependencies": { "Microsoft.Extensions.ApiDescription.Server": "6.0.5", - "Swashbuckle.AspNetCore.Swagger": "6.6.2", - "Swashbuckle.AspNetCore.SwaggerGen": "6.6.2", - "Swashbuckle.AspNetCore.SwaggerUI": "6.6.2" + "Swashbuckle.AspNetCore.Swagger": "8.0.0", + "Swashbuckle.AspNetCore.SwaggerGen": "8.0.0", + "Swashbuckle.AspNetCore.SwaggerUI": "8.0.0" } }, "Swashbuckle.AspNetCore.Swagger": { "type": "Transitive", - "resolved": "6.6.2", - "contentHash": "ovgPTSYX83UrQUWiS5vzDcJ8TEX1MAxBgDFMK45rC24MorHEPQlZAHlaXj/yth4Zf6xcktpUgTEBvffRQVwDKA==", + "resolved": "8.0.0", + "contentHash": "+8Y4pVTWbnzotIk6d6rcwsHGpCchPDqqrvYkyGlI3go+pFaKM+4eX30iCyI0hvr0RMtObJCFhK6aDtlQFbEF1g==", "dependencies": { - "Microsoft.OpenApi": "1.6.14" + "Microsoft.OpenApi": "1.6.23" } }, "Swashbuckle.AspNetCore.SwaggerGen": { "type": "Transitive", - "resolved": "6.6.2", - "contentHash": "zv4ikn4AT1VYuOsDCpktLq4QDq08e7Utzbir86M5/ZkRaLXbCPF11E1/vTmOiDzRTl0zTZINQU2qLKwTcHgfrA==", + "resolved": "8.0.0", + "contentHash": "skCeIQ93yMcUm1PQby5qitFM6KLIlLMj4/i8JHy86x2OFzxTNaaas2kUg6rNV3JvucFvYCNyImg7NMtZHErSzQ==", "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "6.6.2" + "Swashbuckle.AspNetCore.Swagger": "8.0.0" } }, "Swashbuckle.AspNetCore.SwaggerUI": { "type": "Transitive", - "resolved": "6.6.2", - "contentHash": "mBBb+/8Hm2Q3Wygag+hu2jj69tZW5psuv0vMRXY07Wy+Rrj40vRP8ZTbKBhs91r45/HXT4aY4z0iSBYx1h6JvA==" + "resolved": "8.0.0", + "contentHash": "IMqmgclFiZL2QIfopOmWYofZzckrl+SdMt1h4mKC0jc94F+uzt3IHA3YFC0CGlwBqTTSnxHqNUKomNTeAhZbYA==" }, "System.Buffers": { "type": "Transitive", @@ -914,11 +908,6 @@ "System.Composition.Runtime": "6.0.0" } }, - "System.Diagnostics.DiagnosticSource": { - "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" - }, "System.Diagnostics.EventLog": { "type": "Transitive", "resolved": "6.0.0", @@ -926,20 +915,20 @@ }, "System.IdentityModel.Tokens.Jwt": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "caEe+OpQNYNiyZb+DJpUVROXoVySWBahko2ooNfUcllxa9ZQUM8CgM/mDjP6AoFn6cQU9xMmG+jivXWub8cbGg==", + "resolved": "7.1.2", + "contentHash": "Thhbe1peAmtSBFaV/ohtykXiZSOkx59Da44hvtWfIMFofDA3M3LaVyjstACf2rKGn4dEDR2cUpRAZ0Xs/zB+7Q==", "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "7.0.3", - "Microsoft.IdentityModel.Tokens": "7.0.3" + "Microsoft.IdentityModel.JsonWebTokens": "7.1.2", + "Microsoft.IdentityModel.Tokens": "7.1.2" } }, "System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ewYQGK0kzOpfiYCF0P0nqPAnKqGhqiXAWDFeMtQtwJyERA2s7nLx7KEALwDvIFjZvX6677IsPREoLIU9oBOQvA==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "System.IO.Hashing": { @@ -991,11 +980,8 @@ }, "System.Text.Encoding.CodePages": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "6.0.1", + "contentHash": "OV04vEWTSDXzaAJCjylOIdjB7Z7QTYQcz4/ATZSiG8PLkZLsbtaADj0Ydj4FdFnqq4PAwEA7SuILE+6ka4cn6A==" }, "System.Text.Encodings.Web": { "type": "Transitive", @@ -1004,11 +990,8 @@ }, "System.Text.Json": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", - "dependencies": { - "System.Text.Encodings.Web": "8.0.0" - } + "resolved": "8.0.5", + "contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==" }, "System.Threading.Channels": { "type": "Transitive", @@ -1017,15 +1000,15 @@ }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ViPtOy4lAlmWq9GDEwiE5C9XSgDGHUWMRvVvruI38pbikUXkgu7xnCVW7PYdQOjS+iWWcQHt+U7oyPedfnWSHg==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ii6Xgru3ozRaLezwE/lKAPTdE3ES+S3P3ul+QrMxIP10GN+LF0JAi4aWqb8lxzEAwBMSAeK/QipEpVt4KYlTOg==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "xunit.abstractions": { @@ -1077,8 +1060,8 @@ "type": "Project", "dependencies": { "DotNext.Threading": "[5.5.0, )", - "HL7-dotnetcore": "[2.36.0, )", - "Microsoft.EntityFrameworkCore.Design": "[8.0.6, )", + "HL7-dotnetcore": "[2.39.1, )", + "Microsoft.EntityFrameworkCore.Design": "[8.0.14, )", "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", @@ -1087,24 +1070,24 @@ "Monai.Deploy.InformaticsGateway.Database.EntityFramework": "[1.0.0, )", "Monai.Deploy.InformaticsGateway.DicomWeb.Client": "[1.0.0, )", "Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution": "[1.0.0, )", - "Monai.Deploy.Messaging.RabbitMQ": "[2.0.3, )", - "Monai.Deploy.Security": "[1.0.0, )", - "Monai.Deploy.Storage.MinIO": "[1.0.1, )", - "NLog.Web.AspNetCore": "[5.3.11, )", - "Swashbuckle.AspNetCore": "[6.6.2, )" + "Monai.Deploy.Messaging.RabbitMQ": "[2.0.4, )", + "Monai.Deploy.Security": "[1.0.1, )", + "Monai.Deploy.Storage.MinIO": "[1.0.2, )", + "NLog.Web.AspNetCore": "[5.4.0, )", + "Swashbuckle.AspNetCore": "[8.0.0, )" } }, "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "HL7-dotnetcore": "[2.36.0, )", + "HL7-dotnetcore": "[2.39.1, )", "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.6, )", + "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.14, )", "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Messaging.RabbitMQ": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )", - "fo-dicom": "[5.1.2, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Messaging.RabbitMQ": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )", + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.informaticsgateway.client": { @@ -1117,14 +1100,14 @@ "monai.deploy.informaticsgateway.client.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )" + "Ardalis.GuardClauses": "[4.6.0, )" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )", - "System.IO.Abstractions": "[21.0.2, )" + "Ardalis.GuardClauses": "[4.6.0, )", + "System.IO.Abstractions": "[21.3.1, )" } }, "monai.deploy.informaticsgateway.configuration": { @@ -1137,9 +1120,9 @@ "monai.deploy.informaticsgateway.database": { "type": "Project", "dependencies": { - "AspNetCore.HealthChecks.MongoDb": "[8.0.1, )", - "Microsoft.EntityFrameworkCore.Tools": "[8.0.6, )", - "Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore": "[8.0.6, )", + "AspNetCore.HealthChecks.MongoDb": "[8.1.0, )", + "Microsoft.EntityFrameworkCore.Tools": "[8.0.14, )", + "Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore": "[8.0.14, )", "Microsoft.Extensions.Options.ConfigurationExtensions": "[8.0.0, )", "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", @@ -1153,55 +1136,55 @@ "dependencies": { "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", - "NLog": "[5.3.2, )" + "NLog": "[5.4.0, )" } }, "monai.deploy.informaticsgateway.database.entityframework": { "type": "Project", "dependencies": { - "Microsoft.EntityFrameworkCore": "[8.0.6, )", - "Microsoft.EntityFrameworkCore.Design": "[8.0.6, )", - "Microsoft.EntityFrameworkCore.Sqlite": "[8.0.6, )", - "Microsoft.Extensions.Configuration.FileExtensions": "[8.0.0, )", - "Microsoft.Extensions.Configuration.Json": "[8.0.0, )", + "Microsoft.EntityFrameworkCore": "[8.0.14, )", + "Microsoft.EntityFrameworkCore.Design": "[8.0.14, )", + "Microsoft.EntityFrameworkCore.Sqlite": "[8.0.14, )", + "Microsoft.Extensions.Configuration.FileExtensions": "[8.0.1, )", + "Microsoft.Extensions.Configuration.Json": "[8.0.1, )", "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", "Monai.Deploy.InformaticsGateway.Database.Api": "[1.0.0, )", - "Polly": "[8.4.0, )" + "Polly": "[8.5.2, )" } }, "monai.deploy.informaticsgateway.database.mongodb": { "type": "Project", "dependencies": { "Monai.Deploy.InformaticsGateway.Database.Api": "[1.0.0, )", - "MongoDB.Driver": "[2.25.0, )", - "Polly": "[8.4.0, )" + "MongoDB.Driver": "[2.30.0, )", + "Polly": "[8.5.2, )" } }, "monai.deploy.informaticsgateway.dicomweb.client": { "type": "Project", "dependencies": { "Monai.Deploy.InformaticsGateway.Client.Common": "[1.0.0, )", - "fo-dicom": "[5.1.2, )" + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.informaticsgateway.plugins.remoteappexecution": { "type": "Project", "dependencies": { - "Microsoft.EntityFrameworkCore": "[8.0.6, )", - "Microsoft.EntityFrameworkCore.Design": "[8.0.6, )", - "Microsoft.EntityFrameworkCore.Relational": "[8.0.6, )", - "Microsoft.EntityFrameworkCore.Sqlite": "[8.0.6, )", + "Microsoft.EntityFrameworkCore": "[8.0.14, )", + "Microsoft.EntityFrameworkCore.Design": "[8.0.14, )", + "Microsoft.EntityFrameworkCore.Relational": "[8.0.14, )", + "Microsoft.EntityFrameworkCore.Sqlite": "[8.0.14, )", "Microsoft.Extensions.Configuration": "[8.0.0, )", - "Microsoft.Extensions.Configuration.FileExtensions": "[8.0.0, )", - "Microsoft.Extensions.Configuration.Json": "[8.0.0, )", + "Microsoft.Extensions.Configuration.FileExtensions": "[8.0.1, )", + "Microsoft.Extensions.Configuration.Json": "[8.0.1, )", "Microsoft.Extensions.Options.ConfigurationExtensions": "[8.0.0, )", "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", "Monai.Deploy.InformaticsGateway.Database.Api": "[1.0.0, )", - "MongoDB.Driver": "[2.25.0, )", - "NLog": "[5.3.2, )", - "Polly": "[8.4.0, )" + "MongoDB.Driver": "[2.30.0, )", + "NLog": "[5.4.0, )", + "Polly": "[8.5.2, )" } } } diff --git a/src/Client/packages.lock.json b/src/Client/packages.lock.json index 17cc60c6..10dba21f 100644 --- a/src/Client/packages.lock.json +++ b/src/Client/packages.lock.json @@ -4,49 +4,49 @@ "net8.0": { "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.304.15", - "contentHash": "XLfl4/wuTDWXH73FjGUx5P6Jf6FNLTlyVwWvQ0b/WyBOtZVJxPlCKUTYDn06VdqcLGg3uPP6FKJqnplKsnMHMw==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.105", - "contentHash": "axqpqdA4QZvHzEdGDLk5/IpPQsUTIcnVDulz4uyE+UEeYAHpFcp/BNQxmmIU4Gdv0G5KwQWKiaUaZPuLVN0Esg==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.304.15, 4.0.0)" + "AWSSDK.Core": "[3.7.402.25, 4.0.0)" } }, "CommunityToolkit.HighPerformance": { "type": "Transitive", - "resolved": "8.2.2", - "contentHash": "+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==" + "resolved": "8.3.2", + "contentHash": "1Os81ua0FmIOtiSgOk5C1KBraQ3SDfxs/7BG4qDagm48nGplr//lAVqLH9I2TLDVqRFdhqTUaEITFA5Ho/Ovkw==" }, "fo-dicom": { "type": "Transitive", - "resolved": "5.1.2", - "contentHash": "2lM76Vq+GRdwyY3BQiUJ+V6yxdFiOG4ysLJC7qNTxLsq/1pr5ZTTXiIzWQa+uJ0MuKnzzFogV5+meDflsyjs2g==", + "resolved": "5.2.1", + "contentHash": "Oa6raonOj/Xm+a1j3O89OlUXJIF55jLAKjCuXKINYJMJ+hJ/9Al1YOxPs1hut8DBKvHbgYtgdRFtqGNS+Qt6Uw==", "dependencies": { - "CommunityToolkit.HighPerformance": "8.2.2", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "CommunityToolkit.HighPerformance": "8.3.2", + "Microsoft.Bcl.AsyncInterfaces": "8.0.0", "Microsoft.Bcl.HashCode": "1.1.1", "Microsoft.Extensions.DependencyInjection": "6.0.1", "Microsoft.Extensions.Logging": "6.0.0", "Microsoft.Extensions.Options": "6.0.0", "System.Buffers": "4.5.1", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "6.0.9", + "System.Text.Encoding.CodePages": "6.0.1", + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.5", "System.Threading.Channels": "6.0.0" } }, "HL7-dotnetcore": { "type": "Transitive", - "resolved": "2.36.0", - "contentHash": "N1HLMeIqYuY+4O69ItgZJoDBnnpNkK5N2pClceTJ2nFJxsP48iCsA4iz3tm43Yszi4r/vaThoc3UoLBfGP3vKw==" + "resolved": "2.39.1", + "contentHash": "xbgykLlAr644SfYY2oxnpYYto+JFYLuUHt00hRTlhpB+5DiFC2oVSVRA+8yyq/lmkjTNidtTbN9nyK0ft4DSfw==" }, "Macross.Json.Extensions": { "type": "Transitive", @@ -55,8 +55,8 @@ }, "Microsoft.Bcl.AsyncInterfaces": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==" + "resolved": "8.0.0", + "contentHash": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==" }, "Microsoft.Bcl.HashCode": { "type": "Transitive", @@ -65,8 +65,8 @@ }, "Microsoft.EntityFrameworkCore.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "X7wSSBNFRuN8j8M9HDYG7rPpEeyhY+PdJZR9rftmgvsZH0eK5+bZ3b3As8iO4rLEpjsBzDnrgSIY6q2F3HQatw==" + "resolved": "8.0.14", + "contentHash": "Om8/jdWyx9eKFkA1YEgxk13KjGIzA8teLgG7iNFunsI2+MT6UT54Eb4t6oe4NQlIaACj5voUe6szVAQe9GKwDA==" }, "Microsoft.Extensions.Configuration.Abstractions": { "type": "Transitive", @@ -87,34 +87,33 @@ }, "Microsoft.Extensions.DependencyInjection.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==" + "resolved": "8.0.2", + "contentHash": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==" }, "Microsoft.Extensions.Diagnostics.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==", + "resolved": "8.0.1", + "contentHash": "elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", - "System.Diagnostics.DiagnosticSource": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "Wtylr3ucMUQ+/6x5ngRtBQ0D0TVloWE3hbwUEhwE16OZHB66uqAEVnEvcAXxW2IFuVAuEHMXX5GebfkbSZQSTw==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.6", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.1", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.14", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.3", "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "GiHK4B5Xsf5YzL73kup2zJoJfDx5RJYBd0LZN6dx8XyOSoZnh7NNrMP+vTLxAJVp//JxHk0KIhBnW9YuFrSVig==" + "resolved": "8.0.14", + "contentHash": "se5sdveMiA3PUOWchOZXY/sGA50MrJ/Mg/G6CdQBtyA4MLySNRilVCi23YT90RAwqvI2uQEk5+buxYdpAfuwpA==" }, "Microsoft.Extensions.FileProviders.Abstractions": { "type": "Transitive", @@ -126,14 +125,14 @@ }, "Microsoft.Extensions.Hosting.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "resolved": "8.0.1", + "contentHash": "nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging": { @@ -150,10 +149,10 @@ }, "Microsoft.Extensions.Logging.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Options": { @@ -172,42 +171,42 @@ }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "jchWPuXJC4N9g1jZ7ZPSfbDSBfMmIgFw5w9VqAT5A9USdE/10IMT83wL48KkTbR7eHdphghe06iGKk7IPhYweA==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "21.0.2" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Messaging.RabbitMQ": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "/tj7IO/SHYXNRfxh7iIMms9TurhtCIozZp5lDFvd/WkPgKWZyyyZH8wxkNb9r7jIh/vXkrGJcPCxR30uoET+7g==", + "resolved": "2.0.4", + "contentHash": "tmEERdnqJq1STVGx30+wVyj7AtvtT8K2j/59lSiZ7k58ZdRku601Gs6k1KZ/sfGeobCjaB4gI7GROxK+lN6gbg==", "dependencies": { - "Monai.Deploy.Messaging": "2.0.3", - "Polly": "8.4.0", + "Monai.Deploy.Messaging": "2.0.4", + "Polly": "8.5.2", "RabbitMQ.Client": "6.8.1" } }, "Monai.Deploy.Storage": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "ceVSHBPDMxWV7C6TLBoJmJt3X0RQmdPnm+9NU17Zs0TGE58QvSEHn4GJODtK9+ncgUJICjBhPFcNHV40ybEepQ==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.105", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", - "Monai.Deploy.Storage.S3Policy": "1.0.1", - "System.IO.Abstractions": "21.0.2" + "AWSSDK.SecurityToken": "3.7.401.68", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", + "Monai.Deploy.Storage.S3Policy": "1.0.2", + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage.S3Policy": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "mgLlLRphh+vrVKen72jfEzBcoOhAzCjavGMUzWIjIFh5avmb2RJNbQERLSISOCjWnqPscc/xSPKFUUpLMOLdYw==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, @@ -218,16 +217,16 @@ }, "Polly": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "z2EeUutuy49jBQyZ5s2FUuTCGx3GCzJ0cJ2HbjWwks94TsC6bKTtAHKBkMZOa/DyYRl5yIX7MshvMTWl1J6RNg==", + "resolved": "8.5.2", + "contentHash": "vbXsGgkG86nG+TOwY+SmtrGrRHmHH0DQaxtILx//d3Dz/ocJ8izSNYzdvU2gEtWa/LDD8zJLvD3HdjEkdlvkhg==", "dependencies": { - "Polly.Core": "8.4.0" + "Polly.Core": "8.5.2" } }, "Polly.Core": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "3AZxuP//pxOeBo9tQs7/tz4Z5TTbu4BYfjpaXZD0JYKJo98ngN9TMUz1nybh4k0ykWkMBpGZALV/AmVIE3ew7A==" + "resolved": "8.5.2", + "contentHash": "1MJKdxv4zwDmiWvYvVN24DsrWUfgQ4F83voH8bhbtLMdPuGy8CfTUzsgQhvyrl1a7hrM6f/ydwLVdVUI0xooUw==" }, "RabbitMQ.Client": { "type": "Transitive", @@ -245,16 +244,19 @@ }, "System.Diagnostics.DiagnosticSource": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" + "resolved": "6.0.0", + "contentHash": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } }, "System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ewYQGK0kzOpfiYCF0P0nqPAnKqGhqiXAWDFeMtQtwJyERA2s7nLx7KEALwDvIFjZvX6677IsPREoLIU9oBOQvA==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "System.Memory": { @@ -269,28 +271,18 @@ }, "System.Text.Encoding.CodePages": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "6.0.1", + "contentHash": "OV04vEWTSDXzaAJCjylOIdjB7Z7QTYQcz4/ATZSiG8PLkZLsbtaADj0Ydj4FdFnqq4PAwEA7SuILE+6ka4cn6A==" }, "System.Text.Encodings.Web": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "8.0.0", + "contentHash": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==" }, "System.Text.Json": { "type": "Transitive", - "resolved": "6.0.9", - "contentHash": "2j16oUgtIzl7Xtk7demG0i/v5aU/ZvULcAnJvPb63U3ZhXJ494UYcxuEj5Fs49i3XDrk5kU/8I+6l9zRCw3cJw==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "6.0.0" - } + "resolved": "8.0.5", + "contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==" }, "System.Threading.Channels": { "type": "Transitive", @@ -299,41 +291,41 @@ }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ViPtOy4lAlmWq9GDEwiE5C9XSgDGHUWMRvVvruI38pbikUXkgu7xnCVW7PYdQOjS+iWWcQHt+U7oyPedfnWSHg==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ii6Xgru3ozRaLezwE/lKAPTdE3ES+S3P3ul+QrMxIP10GN+LF0JAi4aWqb8lxzEAwBMSAeK/QipEpVt4KYlTOg==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "HL7-dotnetcore": "[2.36.0, )", + "HL7-dotnetcore": "[2.39.1, )", "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.6, )", + "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.14, )", "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Messaging.RabbitMQ": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )", - "fo-dicom": "[5.1.2, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Messaging.RabbitMQ": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )", + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.informaticsgateway.client.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )" + "Ardalis.GuardClauses": "[4.6.0, )" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )", - "System.IO.Abstractions": "[21.0.2, )" + "Ardalis.GuardClauses": "[4.6.0, )", + "System.IO.Abstractions": "[21.3.1, )" } } } diff --git a/src/Common/Monai.Deploy.InformaticsGateway.Common.csproj b/src/Common/Monai.Deploy.InformaticsGateway.Common.csproj index 9db32a2a..c103fad3 100644 --- a/src/Common/Monai.Deploy.InformaticsGateway.Common.csproj +++ b/src/Common/Monai.Deploy.InformaticsGateway.Common.csproj @@ -25,8 +25,8 @@ false - - + + diff --git a/src/Common/Test/Monai.Deploy.InformaticsGateway.Common.Test.csproj b/src/Common/Test/Monai.Deploy.InformaticsGateway.Common.Test.csproj index 3c5b5e93..f892060d 100644 --- a/src/Common/Test/Monai.Deploy.InformaticsGateway.Common.Test.csproj +++ b/src/Common/Test/Monai.Deploy.InformaticsGateway.Common.Test.csproj @@ -22,14 +22,14 @@ true - + all runtime; build; native; contentfiles; analyzers; buildtransitive - + - - + + runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Common/Test/packages.lock.json b/src/Common/Test/packages.lock.json index bae34434..781bfae4 100644 --- a/src/Common/Test/packages.lock.json +++ b/src/Common/Test/packages.lock.json @@ -4,18 +4,18 @@ "net8.0": { "coverlet.collector": { "type": "Direct", - "requested": "[6.0.2, )", - "resolved": "6.0.2", - "contentHash": "bJShQ6uWRTQ100ZeyiMqcFlhP7WJ+bCuabUs885dJiBEzMsJMSFr7BOyeCw4rgvQokteGi5rKQTlkhfQPUXg2A==" + "requested": "[6.0.4, )", + "resolved": "6.0.4", + "contentHash": "lkhqpF8Pu2Y7IiN7OntbsTtdbpR1syMsm2F3IgX6ootA4ffRqWL5jF7XipHuZQTdVuWG/gVAAcf8mjk8Tz0xPg==" }, "Microsoft.NET.Test.Sdk": { "type": "Direct", - "requested": "[17.10.0, )", - "resolved": "17.10.0", - "contentHash": "0/2HeACkaHEYU3wc83YlcD2Fi4LMtECJjqrtvw0lPi9DCEa35zSPt1j4fuvM8NagjDqJuh1Ja35WcRtn1Um6/A==", + "requested": "[17.13.0, )", + "resolved": "17.13.0", + "contentHash": "W19wCPizaIC9Zh47w8wWI/yxuqR7/dtABwOrc8r2jX/8mUNxM2vw4fXDh+DJTeogxV+KzKwg5jNNGQVwf3LXyA==", "dependencies": { - "Microsoft.CodeCoverage": "17.10.0", - "Microsoft.TestPlatform.TestHost": "17.10.0" + "Microsoft.CodeCoverage": "17.13.0", + "Microsoft.TestPlatform.TestHost": "17.13.0" } }, "Moq": { @@ -29,21 +29,21 @@ }, "System.IO.Abstractions": { "type": "Direct", - "requested": "[21.0.2, )", - "resolved": "21.0.2", - "contentHash": "ewYQGK0kzOpfiYCF0P0nqPAnKqGhqiXAWDFeMtQtwJyERA2s7nLx7KEALwDvIFjZvX6677IsPREoLIU9oBOQvA==", + "requested": "[21.3.1, )", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "System.IO.Abstractions.TestingHelpers": { "type": "Direct", - "requested": "[21.0.2, )", - "resolved": "21.0.2", - "contentHash": "35gVJWBrsUkf+ob0xZJaVja0gLYA5UnqM1K0cSHHKfZ71aMMwUbhNNOy/cpHiVF+Z7FLiREVE080F9QDCf5O2A==", + "requested": "[21.3.1, )", + "resolved": "21.3.1", + "contentHash": "LsvGSS5XbvVonvWo1fb6X5T3WFAe59A9A+F+KiyXXDEw8FDDEvaoI+IbUzLPyjTZJ1sIFredoJCgppXjEESL4A==", "dependencies": { - "TestableIO.System.IO.Abstractions.TestingHelpers": "21.0.2" + "TestableIO.System.IO.Abstractions.TestingHelpers": "21.3.1" } }, "xunit": { @@ -65,8 +65,8 @@ }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "Castle.Core": { "type": "Transitive", @@ -78,23 +78,23 @@ }, "Microsoft.CodeCoverage": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "yC7oSlnR54XO5kOuHlVOKtxomNNN1BWXX8lK1G2jaPXT9sUok7kCOoA4Pgs0qyFaCtMrNsprztYMeoEGqCm4uA==" + "resolved": "17.13.0", + "contentHash": "9LIUy0y+DvUmEPtbRDw6Bay3rzwqFV8P4efTrK4CZhQle3M/QwLPjISghfcolmEGAPWxuJi6m98ZEfk4VR4Lfg==" }, "Microsoft.TestPlatform.ObjectModel": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "KkwhjQevuDj0aBRoPLY6OLAhGqbPUEBuKLbaCs0kUVw29qiOYncdORd4mLVJbn9vGZ7/iFGQ/+AoJl0Tu5Umdg==", + "resolved": "17.13.0", + "contentHash": "bt0E0Dx+iqW97o4A59RCmUmz/5NarJ7LRL+jXbSHod72ibL5XdNm1Ke+UO5tFhBG4VwHLcSjqq9BUSblGNWamw==", "dependencies": { "System.Reflection.Metadata": "1.6.0" } }, "Microsoft.TestPlatform.TestHost": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "LWpMdfqhHvcUkeMCvNYJO8QlPLlYz9XPPb+ZbaXIKhdmjAV0wqTSrTiW5FLaf7RRZT50AQADDOYMOe0HxDxNgA==", + "resolved": "17.13.0", + "contentHash": "9GGw08Dc3AXspjekdyTdZ/wYWFlxbgcF0s7BKxzVX+hzAwpifDOdxM+ceVaaJSQOwqt3jtuNlHn3XTpKUS9x9Q==", "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "17.10.0", + "Microsoft.TestPlatform.ObjectModel": "17.13.0", "Newtonsoft.Json": "13.0.1" } }, @@ -115,24 +115,24 @@ }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ViPtOy4lAlmWq9GDEwiE5C9XSgDGHUWMRvVvruI38pbikUXkgu7xnCVW7PYdQOjS+iWWcQHt+U7oyPedfnWSHg==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.TestingHelpers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "4s6EC7rGSlNPqC9/FOmYavFTjetO7zDBnc0H8Hyb8ABJll2UgeC7UvdNLwx28/hhUE8AvUJmwamjAII6LJWIQA==", + "resolved": "21.3.1", + "contentHash": "XP7tiKVtnOP+jXWsRqgc7WCV2tsoolVnxSNUJXwdWmHCpLMsVlZXRag7dMynnNEQQB9XEJx25RteqN5APCnjag==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ii6Xgru3ozRaLezwE/lKAPTdE3ES+S3P3ul+QrMxIP10GN+LF0JAi4aWqb8lxzEAwBMSAeK/QipEpVt4KYlTOg==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "xunit.abstractions": { @@ -178,8 +178,8 @@ "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )", - "System.IO.Abstractions": "[21.0.2, )" + "Ardalis.GuardClauses": "[4.6.0, )", + "System.IO.Abstractions": "[21.3.1, )" } } } diff --git a/src/Common/packages.lock.json b/src/Common/packages.lock.json old mode 100755 new mode 100644 index 4abc0740..3341c5a7 --- a/src/Common/packages.lock.json +++ b/src/Common/packages.lock.json @@ -4,37 +4,37 @@ "net8.0": { "Ardalis.GuardClauses": { "type": "Direct", - "requested": "[4.5.0, )", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "requested": "[4.6.0, )", + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "Microsoft.NET.ILLink.Tasks": { "type": "Direct", - "requested": "[8.0.7, )", - "resolved": "8.0.7", - "contentHash": "iI52ptEKby2ymQ6B7h4TWbFmm85T4VvLgc/HvS45Yr3lgi4IIFbQtjON3bQbX/Vc94jXNSLvrDOp5Kh7SJyFYQ==" + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "4U2fd7PexNKrK5ZqfqIcXZj9/lRRjFsLgA/pxuFQTuGQuLYP/+7yACz/j7EmWbEj/fspOf4mafi/vHIy/rKDzQ==" }, "System.IO.Abstractions": { "type": "Direct", - "requested": "[21.0.2, )", - "resolved": "21.0.2", - "contentHash": "ewYQGK0kzOpfiYCF0P0nqPAnKqGhqiXAWDFeMtQtwJyERA2s7nLx7KEALwDvIFjZvX6677IsPREoLIU9oBOQvA==", + "requested": "[21.3.1, )", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ViPtOy4lAlmWq9GDEwiE5C9XSgDGHUWMRvVvruI38pbikUXkgu7xnCVW7PYdQOjS+iWWcQHt+U7oyPedfnWSHg==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ii6Xgru3ozRaLezwE/lKAPTdE3ES+S3P3ul+QrMxIP10GN+LF0JAi4aWqb8lxzEAwBMSAeK/QipEpVt4KYlTOg==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1" } } } diff --git a/src/Configuration/Test/Monai.Deploy.InformaticsGateway.Configuration.Test.csproj b/src/Configuration/Test/Monai.Deploy.InformaticsGateway.Configuration.Test.csproj index fd7b7aec..fe22b796 100644 --- a/src/Configuration/Test/Monai.Deploy.InformaticsGateway.Configuration.Test.csproj +++ b/src/Configuration/Test/Monai.Deploy.InformaticsGateway.Configuration.Test.csproj @@ -25,13 +25,13 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive - + - + runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Configuration/Test/packages.lock.json b/src/Configuration/Test/packages.lock.json index 06f02c29..65936ecd 100644 --- a/src/Configuration/Test/packages.lock.json +++ b/src/Configuration/Test/packages.lock.json @@ -4,18 +4,18 @@ "net8.0": { "coverlet.collector": { "type": "Direct", - "requested": "[6.0.2, )", - "resolved": "6.0.2", - "contentHash": "bJShQ6uWRTQ100ZeyiMqcFlhP7WJ+bCuabUs885dJiBEzMsJMSFr7BOyeCw4rgvQokteGi5rKQTlkhfQPUXg2A==" + "requested": "[6.0.4, )", + "resolved": "6.0.4", + "contentHash": "lkhqpF8Pu2Y7IiN7OntbsTtdbpR1syMsm2F3IgX6ootA4ffRqWL5jF7XipHuZQTdVuWG/gVAAcf8mjk8Tz0xPg==" }, "Microsoft.NET.Test.Sdk": { "type": "Direct", - "requested": "[17.10.0, )", - "resolved": "17.10.0", - "contentHash": "0/2HeACkaHEYU3wc83YlcD2Fi4LMtECJjqrtvw0lPi9DCEa35zSPt1j4fuvM8NagjDqJuh1Ja35WcRtn1Um6/A==", + "requested": "[17.13.0, )", + "resolved": "17.13.0", + "contentHash": "W19wCPizaIC9Zh47w8wWI/yxuqR7/dtABwOrc8r2jX/8mUNxM2vw4fXDh+DJTeogxV+KzKwg5jNNGQVwf3LXyA==", "dependencies": { - "Microsoft.CodeCoverage": "17.10.0", - "Microsoft.TestPlatform.TestHost": "17.10.0" + "Microsoft.CodeCoverage": "17.13.0", + "Microsoft.TestPlatform.TestHost": "17.13.0" } }, "Moq": { @@ -29,11 +29,11 @@ }, "System.IO.Abstractions.TestingHelpers": { "type": "Direct", - "requested": "[21.0.2, )", - "resolved": "21.0.2", - "contentHash": "35gVJWBrsUkf+ob0xZJaVja0gLYA5UnqM1K0cSHHKfZ71aMMwUbhNNOy/cpHiVF+Z7FLiREVE080F9QDCf5O2A==", + "requested": "[21.3.1, )", + "resolved": "21.3.1", + "contentHash": "LsvGSS5XbvVonvWo1fb6X5T3WFAe59A9A+F+KiyXXDEw8FDDEvaoI+IbUzLPyjTZJ1sIFredoJCgppXjEESL4A==", "dependencies": { - "TestableIO.System.IO.Abstractions.TestingHelpers": "21.0.2" + "TestableIO.System.IO.Abstractions.TestingHelpers": "21.3.1" } }, "xunit": { @@ -55,20 +55,20 @@ }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.304.15", - "contentHash": "XLfl4/wuTDWXH73FjGUx5P6Jf6FNLTlyVwWvQ0b/WyBOtZVJxPlCKUTYDn06VdqcLGg3uPP6FKJqnplKsnMHMw==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.105", - "contentHash": "axqpqdA4QZvHzEdGDLk5/IpPQsUTIcnVDulz4uyE+UEeYAHpFcp/BNQxmmIU4Gdv0G5KwQWKiaUaZPuLVN0Esg==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.304.15, 4.0.0)" + "AWSSDK.Core": "[3.7.402.25, 4.0.0)" } }, "Castle.Core": { @@ -81,31 +81,31 @@ }, "CommunityToolkit.HighPerformance": { "type": "Transitive", - "resolved": "8.2.2", - "contentHash": "+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==" + "resolved": "8.3.2", + "contentHash": "1Os81ua0FmIOtiSgOk5C1KBraQ3SDfxs/7BG4qDagm48nGplr//lAVqLH9I2TLDVqRFdhqTUaEITFA5Ho/Ovkw==" }, "fo-dicom": { "type": "Transitive", - "resolved": "5.1.2", - "contentHash": "2lM76Vq+GRdwyY3BQiUJ+V6yxdFiOG4ysLJC7qNTxLsq/1pr5ZTTXiIzWQa+uJ0MuKnzzFogV5+meDflsyjs2g==", + "resolved": "5.2.1", + "contentHash": "Oa6raonOj/Xm+a1j3O89OlUXJIF55jLAKjCuXKINYJMJ+hJ/9Al1YOxPs1hut8DBKvHbgYtgdRFtqGNS+Qt6Uw==", "dependencies": { - "CommunityToolkit.HighPerformance": "8.2.2", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "CommunityToolkit.HighPerformance": "8.3.2", + "Microsoft.Bcl.AsyncInterfaces": "8.0.0", "Microsoft.Bcl.HashCode": "1.1.1", "Microsoft.Extensions.DependencyInjection": "6.0.1", "Microsoft.Extensions.Logging": "6.0.0", "Microsoft.Extensions.Options": "6.0.0", "System.Buffers": "4.5.1", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "6.0.9", + "System.Text.Encoding.CodePages": "6.0.1", + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.5", "System.Threading.Channels": "6.0.0" } }, "HL7-dotnetcore": { "type": "Transitive", - "resolved": "2.36.0", - "contentHash": "N1HLMeIqYuY+4O69ItgZJoDBnnpNkK5N2pClceTJ2nFJxsP48iCsA4iz3tm43Yszi4r/vaThoc3UoLBfGP3vKw==" + "resolved": "2.39.1", + "contentHash": "xbgykLlAr644SfYY2oxnpYYto+JFYLuUHt00hRTlhpB+5DiFC2oVSVRA+8yyq/lmkjTNidtTbN9nyK0ft4DSfw==" }, "Macross.Json.Extensions": { "type": "Transitive", @@ -114,8 +114,8 @@ }, "Microsoft.Bcl.AsyncInterfaces": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==" + "resolved": "8.0.0", + "contentHash": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==" }, "Microsoft.Bcl.HashCode": { "type": "Transitive", @@ -124,13 +124,13 @@ }, "Microsoft.CodeCoverage": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "yC7oSlnR54XO5kOuHlVOKtxomNNN1BWXX8lK1G2jaPXT9sUok7kCOoA4Pgs0qyFaCtMrNsprztYMeoEGqCm4uA==" + "resolved": "17.13.0", + "contentHash": "9LIUy0y+DvUmEPtbRDw6Bay3rzwqFV8P4efTrK4CZhQle3M/QwLPjISghfcolmEGAPWxuJi6m98ZEfk4VR4Lfg==" }, "Microsoft.EntityFrameworkCore.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "X7wSSBNFRuN8j8M9HDYG7rPpEeyhY+PdJZR9rftmgvsZH0eK5+bZ3b3As8iO4rLEpjsBzDnrgSIY6q2F3HQatw==" + "resolved": "8.0.14", + "contentHash": "Om8/jdWyx9eKFkA1YEgxk13KjGIzA8teLgG7iNFunsI2+MT6UT54Eb4t6oe4NQlIaACj5voUe6szVAQe9GKwDA==" }, "Microsoft.Extensions.Configuration.Abstractions": { "type": "Transitive", @@ -151,34 +151,33 @@ }, "Microsoft.Extensions.DependencyInjection.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==" + "resolved": "8.0.2", + "contentHash": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==" }, "Microsoft.Extensions.Diagnostics.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==", + "resolved": "8.0.1", + "contentHash": "elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", - "System.Diagnostics.DiagnosticSource": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "Wtylr3ucMUQ+/6x5ngRtBQ0D0TVloWE3hbwUEhwE16OZHB66uqAEVnEvcAXxW2IFuVAuEHMXX5GebfkbSZQSTw==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.6", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.1", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.14", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.3", "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "GiHK4B5Xsf5YzL73kup2zJoJfDx5RJYBd0LZN6dx8XyOSoZnh7NNrMP+vTLxAJVp//JxHk0KIhBnW9YuFrSVig==" + "resolved": "8.0.14", + "contentHash": "se5sdveMiA3PUOWchOZXY/sGA50MrJ/Mg/G6CdQBtyA4MLySNRilVCi23YT90RAwqvI2uQEk5+buxYdpAfuwpA==" }, "Microsoft.Extensions.FileProviders.Abstractions": { "type": "Transitive", @@ -190,14 +189,14 @@ }, "Microsoft.Extensions.Hosting.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "resolved": "8.0.1", + "contentHash": "nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging": { @@ -214,10 +213,10 @@ }, "Microsoft.Extensions.Logging.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Options": { @@ -236,59 +235,59 @@ }, "Microsoft.TestPlatform.ObjectModel": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "KkwhjQevuDj0aBRoPLY6OLAhGqbPUEBuKLbaCs0kUVw29qiOYncdORd4mLVJbn9vGZ7/iFGQ/+AoJl0Tu5Umdg==", + "resolved": "17.13.0", + "contentHash": "bt0E0Dx+iqW97o4A59RCmUmz/5NarJ7LRL+jXbSHod72ibL5XdNm1Ke+UO5tFhBG4VwHLcSjqq9BUSblGNWamw==", "dependencies": { "System.Reflection.Metadata": "1.6.0" } }, "Microsoft.TestPlatform.TestHost": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "LWpMdfqhHvcUkeMCvNYJO8QlPLlYz9XPPb+ZbaXIKhdmjAV0wqTSrTiW5FLaf7RRZT50AQADDOYMOe0HxDxNgA==", + "resolved": "17.13.0", + "contentHash": "9GGw08Dc3AXspjekdyTdZ/wYWFlxbgcF0s7BKxzVX+hzAwpifDOdxM+ceVaaJSQOwqt3jtuNlHn3XTpKUS9x9Q==", "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "17.10.0", + "Microsoft.TestPlatform.ObjectModel": "17.13.0", "Newtonsoft.Json": "13.0.1" } }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "jchWPuXJC4N9g1jZ7ZPSfbDSBfMmIgFw5w9VqAT5A9USdE/10IMT83wL48KkTbR7eHdphghe06iGKk7IPhYweA==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "21.0.2" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Messaging.RabbitMQ": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "/tj7IO/SHYXNRfxh7iIMms9TurhtCIozZp5lDFvd/WkPgKWZyyyZH8wxkNb9r7jIh/vXkrGJcPCxR30uoET+7g==", + "resolved": "2.0.4", + "contentHash": "tmEERdnqJq1STVGx30+wVyj7AtvtT8K2j/59lSiZ7k58ZdRku601Gs6k1KZ/sfGeobCjaB4gI7GROxK+lN6gbg==", "dependencies": { - "Monai.Deploy.Messaging": "2.0.3", - "Polly": "8.4.0", + "Monai.Deploy.Messaging": "2.0.4", + "Polly": "8.5.2", "RabbitMQ.Client": "6.8.1" } }, "Monai.Deploy.Storage": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "ceVSHBPDMxWV7C6TLBoJmJt3X0RQmdPnm+9NU17Zs0TGE58QvSEHn4GJODtK9+ncgUJICjBhPFcNHV40ybEepQ==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.105", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", - "Monai.Deploy.Storage.S3Policy": "1.0.1", - "System.IO.Abstractions": "21.0.2" + "AWSSDK.SecurityToken": "3.7.401.68", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", + "Monai.Deploy.Storage.S3Policy": "1.0.2", + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage.S3Policy": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "mgLlLRphh+vrVKen72jfEzBcoOhAzCjavGMUzWIjIFh5avmb2RJNbQERLSISOCjWnqPscc/xSPKFUUpLMOLdYw==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, @@ -299,16 +298,16 @@ }, "Polly": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "z2EeUutuy49jBQyZ5s2FUuTCGx3GCzJ0cJ2HbjWwks94TsC6bKTtAHKBkMZOa/DyYRl5yIX7MshvMTWl1J6RNg==", + "resolved": "8.5.2", + "contentHash": "vbXsGgkG86nG+TOwY+SmtrGrRHmHH0DQaxtILx//d3Dz/ocJ8izSNYzdvU2gEtWa/LDD8zJLvD3HdjEkdlvkhg==", "dependencies": { - "Polly.Core": "8.4.0" + "Polly.Core": "8.5.2" } }, "Polly.Core": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "3AZxuP//pxOeBo9tQs7/tz4Z5TTbu4BYfjpaXZD0JYKJo98ngN9TMUz1nybh4k0ykWkMBpGZALV/AmVIE3ew7A==" + "resolved": "8.5.2", + "contentHash": "1MJKdxv4zwDmiWvYvVN24DsrWUfgQ4F83voH8bhbtLMdPuGy8CfTUzsgQhvyrl1a7hrM6f/ydwLVdVUI0xooUw==" }, "RabbitMQ.Client": { "type": "Transitive", @@ -326,8 +325,11 @@ }, "System.Diagnostics.DiagnosticSource": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" + "resolved": "6.0.0", + "contentHash": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } }, "System.Diagnostics.EventLog": { "type": "Transitive", @@ -336,11 +338,11 @@ }, "System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ewYQGK0kzOpfiYCF0P0nqPAnKqGhqiXAWDFeMtQtwJyERA2s7nLx7KEALwDvIFjZvX6677IsPREoLIU9oBOQvA==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "System.Memory": { @@ -360,28 +362,18 @@ }, "System.Text.Encoding.CodePages": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "6.0.1", + "contentHash": "OV04vEWTSDXzaAJCjylOIdjB7Z7QTYQcz4/ATZSiG8PLkZLsbtaADj0Ydj4FdFnqq4PAwEA7SuILE+6ka4cn6A==" }, "System.Text.Encodings.Web": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "8.0.0", + "contentHash": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==" }, "System.Text.Json": { "type": "Transitive", - "resolved": "6.0.9", - "contentHash": "2j16oUgtIzl7Xtk7demG0i/v5aU/ZvULcAnJvPb63U3ZhXJ494UYcxuEj5Fs49i3XDrk5kU/8I+6l9zRCw3cJw==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "6.0.0" - } + "resolved": "8.0.5", + "contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==" }, "System.Threading.Channels": { "type": "Transitive", @@ -390,24 +382,24 @@ }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ViPtOy4lAlmWq9GDEwiE5C9XSgDGHUWMRvVvruI38pbikUXkgu7xnCVW7PYdQOjS+iWWcQHt+U7oyPedfnWSHg==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.TestingHelpers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "4s6EC7rGSlNPqC9/FOmYavFTjetO7zDBnc0H8Hyb8ABJll2UgeC7UvdNLwx28/hhUE8AvUJmwamjAII6LJWIQA==", + "resolved": "21.3.1", + "contentHash": "XP7tiKVtnOP+jXWsRqgc7WCV2tsoolVnxSNUJXwdWmHCpLMsVlZXRag7dMynnNEQQB9XEJx25RteqN5APCnjag==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ii6Xgru3ozRaLezwE/lKAPTdE3ES+S3P3ul+QrMxIP10GN+LF0JAi4aWqb8lxzEAwBMSAeK/QipEpVt4KYlTOg==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "xunit.abstractions": { @@ -453,21 +445,21 @@ "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "HL7-dotnetcore": "[2.36.0, )", + "HL7-dotnetcore": "[2.39.1, )", "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.6, )", + "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.14, )", "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Messaging.RabbitMQ": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )", - "fo-dicom": "[5.1.2, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Messaging.RabbitMQ": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )", + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )", - "System.IO.Abstractions": "[21.0.2, )" + "Ardalis.GuardClauses": "[4.6.0, )", + "System.IO.Abstractions": "[21.3.1, )" } }, "monai.deploy.informaticsgateway.configuration": { diff --git a/src/Configuration/packages.lock.json b/src/Configuration/packages.lock.json old mode 100755 new mode 100644 index 9f4ff780..13f13e64 --- a/src/Configuration/packages.lock.json +++ b/src/Configuration/packages.lock.json @@ -4,55 +4,55 @@ "net8.0": { "Microsoft.NET.ILLink.Tasks": { "type": "Direct", - "requested": "[8.0.7, )", - "resolved": "8.0.7", - "contentHash": "iI52ptEKby2ymQ6B7h4TWbFmm85T4VvLgc/HvS45Yr3lgi4IIFbQtjON3bQbX/Vc94jXNSLvrDOp5Kh7SJyFYQ==" + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "4U2fd7PexNKrK5ZqfqIcXZj9/lRRjFsLgA/pxuFQTuGQuLYP/+7yACz/j7EmWbEj/fspOf4mafi/vHIy/rKDzQ==" }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.304.15", - "contentHash": "XLfl4/wuTDWXH73FjGUx5P6Jf6FNLTlyVwWvQ0b/WyBOtZVJxPlCKUTYDn06VdqcLGg3uPP6FKJqnplKsnMHMw==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.105", - "contentHash": "axqpqdA4QZvHzEdGDLk5/IpPQsUTIcnVDulz4uyE+UEeYAHpFcp/BNQxmmIU4Gdv0G5KwQWKiaUaZPuLVN0Esg==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.304.15, 4.0.0)" + "AWSSDK.Core": "[3.7.402.25, 4.0.0)" } }, "CommunityToolkit.HighPerformance": { "type": "Transitive", - "resolved": "8.2.2", - "contentHash": "+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==" + "resolved": "8.3.2", + "contentHash": "1Os81ua0FmIOtiSgOk5C1KBraQ3SDfxs/7BG4qDagm48nGplr//lAVqLH9I2TLDVqRFdhqTUaEITFA5Ho/Ovkw==" }, "fo-dicom": { "type": "Transitive", - "resolved": "5.1.2", - "contentHash": "2lM76Vq+GRdwyY3BQiUJ+V6yxdFiOG4ysLJC7qNTxLsq/1pr5ZTTXiIzWQa+uJ0MuKnzzFogV5+meDflsyjs2g==", + "resolved": "5.2.1", + "contentHash": "Oa6raonOj/Xm+a1j3O89OlUXJIF55jLAKjCuXKINYJMJ+hJ/9Al1YOxPs1hut8DBKvHbgYtgdRFtqGNS+Qt6Uw==", "dependencies": { - "CommunityToolkit.HighPerformance": "8.2.2", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "CommunityToolkit.HighPerformance": "8.3.2", + "Microsoft.Bcl.AsyncInterfaces": "8.0.0", "Microsoft.Bcl.HashCode": "1.1.1", "Microsoft.Extensions.DependencyInjection": "6.0.1", "Microsoft.Extensions.Logging": "6.0.0", "Microsoft.Extensions.Options": "6.0.0", "System.Buffers": "4.5.1", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "6.0.9", + "System.Text.Encoding.CodePages": "6.0.1", + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.5", "System.Threading.Channels": "6.0.0" } }, "HL7-dotnetcore": { "type": "Transitive", - "resolved": "2.36.0", - "contentHash": "N1HLMeIqYuY+4O69ItgZJoDBnnpNkK5N2pClceTJ2nFJxsP48iCsA4iz3tm43Yszi4r/vaThoc3UoLBfGP3vKw==" + "resolved": "2.39.1", + "contentHash": "xbgykLlAr644SfYY2oxnpYYto+JFYLuUHt00hRTlhpB+5DiFC2oVSVRA+8yyq/lmkjTNidtTbN9nyK0ft4DSfw==" }, "Macross.Json.Extensions": { "type": "Transitive", @@ -61,8 +61,8 @@ }, "Microsoft.Bcl.AsyncInterfaces": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==" + "resolved": "8.0.0", + "contentHash": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==" }, "Microsoft.Bcl.HashCode": { "type": "Transitive", @@ -71,8 +71,8 @@ }, "Microsoft.EntityFrameworkCore.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "X7wSSBNFRuN8j8M9HDYG7rPpEeyhY+PdJZR9rftmgvsZH0eK5+bZ3b3As8iO4rLEpjsBzDnrgSIY6q2F3HQatw==" + "resolved": "8.0.14", + "contentHash": "Om8/jdWyx9eKFkA1YEgxk13KjGIzA8teLgG7iNFunsI2+MT6UT54Eb4t6oe4NQlIaACj5voUe6szVAQe9GKwDA==" }, "Microsoft.Extensions.Configuration.Abstractions": { "type": "Transitive", @@ -93,34 +93,33 @@ }, "Microsoft.Extensions.DependencyInjection.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==" + "resolved": "8.0.2", + "contentHash": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==" }, "Microsoft.Extensions.Diagnostics.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==", + "resolved": "8.0.1", + "contentHash": "elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", - "System.Diagnostics.DiagnosticSource": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "Wtylr3ucMUQ+/6x5ngRtBQ0D0TVloWE3hbwUEhwE16OZHB66uqAEVnEvcAXxW2IFuVAuEHMXX5GebfkbSZQSTw==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.6", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.1", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.14", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.3", "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "GiHK4B5Xsf5YzL73kup2zJoJfDx5RJYBd0LZN6dx8XyOSoZnh7NNrMP+vTLxAJVp//JxHk0KIhBnW9YuFrSVig==" + "resolved": "8.0.14", + "contentHash": "se5sdveMiA3PUOWchOZXY/sGA50MrJ/Mg/G6CdQBtyA4MLySNRilVCi23YT90RAwqvI2uQEk5+buxYdpAfuwpA==" }, "Microsoft.Extensions.FileProviders.Abstractions": { "type": "Transitive", @@ -132,14 +131,14 @@ }, "Microsoft.Extensions.Hosting.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "resolved": "8.0.1", + "contentHash": "nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging": { @@ -156,10 +155,10 @@ }, "Microsoft.Extensions.Logging.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Options": { @@ -178,42 +177,42 @@ }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "jchWPuXJC4N9g1jZ7ZPSfbDSBfMmIgFw5w9VqAT5A9USdE/10IMT83wL48KkTbR7eHdphghe06iGKk7IPhYweA==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "21.0.2" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Messaging.RabbitMQ": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "/tj7IO/SHYXNRfxh7iIMms9TurhtCIozZp5lDFvd/WkPgKWZyyyZH8wxkNb9r7jIh/vXkrGJcPCxR30uoET+7g==", + "resolved": "2.0.4", + "contentHash": "tmEERdnqJq1STVGx30+wVyj7AtvtT8K2j/59lSiZ7k58ZdRku601Gs6k1KZ/sfGeobCjaB4gI7GROxK+lN6gbg==", "dependencies": { - "Monai.Deploy.Messaging": "2.0.3", - "Polly": "8.4.0", + "Monai.Deploy.Messaging": "2.0.4", + "Polly": "8.5.2", "RabbitMQ.Client": "6.8.1" } }, "Monai.Deploy.Storage": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "ceVSHBPDMxWV7C6TLBoJmJt3X0RQmdPnm+9NU17Zs0TGE58QvSEHn4GJODtK9+ncgUJICjBhPFcNHV40ybEepQ==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.105", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", - "Monai.Deploy.Storage.S3Policy": "1.0.1", - "System.IO.Abstractions": "21.0.2" + "AWSSDK.SecurityToken": "3.7.401.68", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", + "Monai.Deploy.Storage.S3Policy": "1.0.2", + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage.S3Policy": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "mgLlLRphh+vrVKen72jfEzBcoOhAzCjavGMUzWIjIFh5avmb2RJNbQERLSISOCjWnqPscc/xSPKFUUpLMOLdYw==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, @@ -224,16 +223,16 @@ }, "Polly": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "z2EeUutuy49jBQyZ5s2FUuTCGx3GCzJ0cJ2HbjWwks94TsC6bKTtAHKBkMZOa/DyYRl5yIX7MshvMTWl1J6RNg==", + "resolved": "8.5.2", + "contentHash": "vbXsGgkG86nG+TOwY+SmtrGrRHmHH0DQaxtILx//d3Dz/ocJ8izSNYzdvU2gEtWa/LDD8zJLvD3HdjEkdlvkhg==", "dependencies": { - "Polly.Core": "8.4.0" + "Polly.Core": "8.5.2" } }, "Polly.Core": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "3AZxuP//pxOeBo9tQs7/tz4Z5TTbu4BYfjpaXZD0JYKJo98ngN9TMUz1nybh4k0ykWkMBpGZALV/AmVIE3ew7A==" + "resolved": "8.5.2", + "contentHash": "1MJKdxv4zwDmiWvYvVN24DsrWUfgQ4F83voH8bhbtLMdPuGy8CfTUzsgQhvyrl1a7hrM6f/ydwLVdVUI0xooUw==" }, "RabbitMQ.Client": { "type": "Transitive", @@ -251,16 +250,19 @@ }, "System.Diagnostics.DiagnosticSource": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" + "resolved": "6.0.0", + "contentHash": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } }, "System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ewYQGK0kzOpfiYCF0P0nqPAnKqGhqiXAWDFeMtQtwJyERA2s7nLx7KEALwDvIFjZvX6677IsPREoLIU9oBOQvA==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "System.Memory": { @@ -275,28 +277,18 @@ }, "System.Text.Encoding.CodePages": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "6.0.1", + "contentHash": "OV04vEWTSDXzaAJCjylOIdjB7Z7QTYQcz4/ATZSiG8PLkZLsbtaADj0Ydj4FdFnqq4PAwEA7SuILE+6ka4cn6A==" }, "System.Text.Encodings.Web": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "8.0.0", + "contentHash": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==" }, "System.Text.Json": { "type": "Transitive", - "resolved": "6.0.9", - "contentHash": "2j16oUgtIzl7Xtk7demG0i/v5aU/ZvULcAnJvPb63U3ZhXJ494UYcxuEj5Fs49i3XDrk5kU/8I+6l9zRCw3cJw==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "6.0.0" - } + "resolved": "8.0.5", + "contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==" }, "System.Threading.Channels": { "type": "Transitive", @@ -305,35 +297,35 @@ }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ViPtOy4lAlmWq9GDEwiE5C9XSgDGHUWMRvVvruI38pbikUXkgu7xnCVW7PYdQOjS+iWWcQHt+U7oyPedfnWSHg==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ii6Xgru3ozRaLezwE/lKAPTdE3ES+S3P3ul+QrMxIP10GN+LF0JAi4aWqb8lxzEAwBMSAeK/QipEpVt4KYlTOg==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "HL7-dotnetcore": "[2.36.0, )", + "HL7-dotnetcore": "[2.39.1, )", "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.6, )", + "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.14, )", "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Messaging.RabbitMQ": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )", - "fo-dicom": "[5.1.2, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Messaging.RabbitMQ": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )", + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )", - "System.IO.Abstractions": "[21.0.2, )" + "Ardalis.GuardClauses": "[4.6.0, )", + "System.IO.Abstractions": "[21.3.1, )" } } } diff --git a/src/Database/Api/Monai.Deploy.InformaticsGateway.Database.Api.csproj b/src/Database/Api/Monai.Deploy.InformaticsGateway.Database.Api.csproj index 9a688559..41cb9462 100644 --- a/src/Database/Api/Monai.Deploy.InformaticsGateway.Database.Api.csproj +++ b/src/Database/Api/Monai.Deploy.InformaticsGateway.Database.Api.csproj @@ -31,7 +31,7 @@ - + diff --git a/src/Database/Api/Test/Monai.Deploy.InformaticsGateway.Database.Api.Test.csproj b/src/Database/Api/Test/Monai.Deploy.InformaticsGateway.Database.Api.Test.csproj index 7661def9..7f67ac03 100644 --- a/src/Database/Api/Test/Monai.Deploy.InformaticsGateway.Database.Api.Test.csproj +++ b/src/Database/Api/Test/Monai.Deploy.InformaticsGateway.Database.Api.Test.csproj @@ -22,13 +22,13 @@ true - + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/src/Database/Api/Test/packages.lock.json b/src/Database/Api/Test/packages.lock.json index e3d1b886..3e736c8b 100644 --- a/src/Database/Api/Test/packages.lock.json +++ b/src/Database/Api/Test/packages.lock.json @@ -4,18 +4,18 @@ "net8.0": { "coverlet.collector": { "type": "Direct", - "requested": "[6.0.2, )", - "resolved": "6.0.2", - "contentHash": "bJShQ6uWRTQ100ZeyiMqcFlhP7WJ+bCuabUs885dJiBEzMsJMSFr7BOyeCw4rgvQokteGi5rKQTlkhfQPUXg2A==" + "requested": "[6.0.4, )", + "resolved": "6.0.4", + "contentHash": "lkhqpF8Pu2Y7IiN7OntbsTtdbpR1syMsm2F3IgX6ootA4ffRqWL5jF7XipHuZQTdVuWG/gVAAcf8mjk8Tz0xPg==" }, "Microsoft.NET.Test.Sdk": { "type": "Direct", - "requested": "[17.10.0, )", - "resolved": "17.10.0", - "contentHash": "0/2HeACkaHEYU3wc83YlcD2Fi4LMtECJjqrtvw0lPi9DCEa35zSPt1j4fuvM8NagjDqJuh1Ja35WcRtn1Um6/A==", + "requested": "[17.13.0, )", + "resolved": "17.13.0", + "contentHash": "W19wCPizaIC9Zh47w8wWI/yxuqR7/dtABwOrc8r2jX/8mUNxM2vw4fXDh+DJTeogxV+KzKwg5jNNGQVwf3LXyA==", "dependencies": { - "Microsoft.CodeCoverage": "17.10.0", - "Microsoft.TestPlatform.TestHost": "17.10.0" + "Microsoft.CodeCoverage": "17.13.0", + "Microsoft.TestPlatform.TestHost": "17.13.0" } }, "xunit": { @@ -37,49 +37,49 @@ }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.304.15", - "contentHash": "XLfl4/wuTDWXH73FjGUx5P6Jf6FNLTlyVwWvQ0b/WyBOtZVJxPlCKUTYDn06VdqcLGg3uPP6FKJqnplKsnMHMw==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.105", - "contentHash": "axqpqdA4QZvHzEdGDLk5/IpPQsUTIcnVDulz4uyE+UEeYAHpFcp/BNQxmmIU4Gdv0G5KwQWKiaUaZPuLVN0Esg==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.304.15, 4.0.0)" + "AWSSDK.Core": "[3.7.402.25, 4.0.0)" } }, "CommunityToolkit.HighPerformance": { "type": "Transitive", - "resolved": "8.2.2", - "contentHash": "+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==" + "resolved": "8.3.2", + "contentHash": "1Os81ua0FmIOtiSgOk5C1KBraQ3SDfxs/7BG4qDagm48nGplr//lAVqLH9I2TLDVqRFdhqTUaEITFA5Ho/Ovkw==" }, "fo-dicom": { "type": "Transitive", - "resolved": "5.1.2", - "contentHash": "2lM76Vq+GRdwyY3BQiUJ+V6yxdFiOG4ysLJC7qNTxLsq/1pr5ZTTXiIzWQa+uJ0MuKnzzFogV5+meDflsyjs2g==", + "resolved": "5.2.1", + "contentHash": "Oa6raonOj/Xm+a1j3O89OlUXJIF55jLAKjCuXKINYJMJ+hJ/9Al1YOxPs1hut8DBKvHbgYtgdRFtqGNS+Qt6Uw==", "dependencies": { - "CommunityToolkit.HighPerformance": "8.2.2", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "CommunityToolkit.HighPerformance": "8.3.2", + "Microsoft.Bcl.AsyncInterfaces": "8.0.0", "Microsoft.Bcl.HashCode": "1.1.1", "Microsoft.Extensions.DependencyInjection": "6.0.1", "Microsoft.Extensions.Logging": "6.0.0", "Microsoft.Extensions.Options": "6.0.0", "System.Buffers": "4.5.1", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "6.0.9", + "System.Text.Encoding.CodePages": "6.0.1", + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.5", "System.Threading.Channels": "6.0.0" } }, "HL7-dotnetcore": { "type": "Transitive", - "resolved": "2.36.0", - "contentHash": "N1HLMeIqYuY+4O69ItgZJoDBnnpNkK5N2pClceTJ2nFJxsP48iCsA4iz3tm43Yszi4r/vaThoc3UoLBfGP3vKw==" + "resolved": "2.39.1", + "contentHash": "xbgykLlAr644SfYY2oxnpYYto+JFYLuUHt00hRTlhpB+5DiFC2oVSVRA+8yyq/lmkjTNidtTbN9nyK0ft4DSfw==" }, "Macross.Json.Extensions": { "type": "Transitive", @@ -88,8 +88,8 @@ }, "Microsoft.Bcl.AsyncInterfaces": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==" + "resolved": "8.0.0", + "contentHash": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==" }, "Microsoft.Bcl.HashCode": { "type": "Transitive", @@ -98,13 +98,13 @@ }, "Microsoft.CodeCoverage": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "yC7oSlnR54XO5kOuHlVOKtxomNNN1BWXX8lK1G2jaPXT9sUok7kCOoA4Pgs0qyFaCtMrNsprztYMeoEGqCm4uA==" + "resolved": "17.13.0", + "contentHash": "9LIUy0y+DvUmEPtbRDw6Bay3rzwqFV8P4efTrK4CZhQle3M/QwLPjISghfcolmEGAPWxuJi6m98ZEfk4VR4Lfg==" }, "Microsoft.EntityFrameworkCore.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "X7wSSBNFRuN8j8M9HDYG7rPpEeyhY+PdJZR9rftmgvsZH0eK5+bZ3b3As8iO4rLEpjsBzDnrgSIY6q2F3HQatw==" + "resolved": "8.0.14", + "contentHash": "Om8/jdWyx9eKFkA1YEgxk13KjGIzA8teLgG7iNFunsI2+MT6UT54Eb4t6oe4NQlIaACj5voUe6szVAQe9GKwDA==" }, "Microsoft.Extensions.Configuration.Abstractions": { "type": "Transitive", @@ -125,34 +125,33 @@ }, "Microsoft.Extensions.DependencyInjection.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==" + "resolved": "8.0.2", + "contentHash": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==" }, "Microsoft.Extensions.Diagnostics.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==", + "resolved": "8.0.1", + "contentHash": "elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", - "System.Diagnostics.DiagnosticSource": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "Wtylr3ucMUQ+/6x5ngRtBQ0D0TVloWE3hbwUEhwE16OZHB66uqAEVnEvcAXxW2IFuVAuEHMXX5GebfkbSZQSTw==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.6", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.1", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.14", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.3", "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "GiHK4B5Xsf5YzL73kup2zJoJfDx5RJYBd0LZN6dx8XyOSoZnh7NNrMP+vTLxAJVp//JxHk0KIhBnW9YuFrSVig==" + "resolved": "8.0.14", + "contentHash": "se5sdveMiA3PUOWchOZXY/sGA50MrJ/Mg/G6CdQBtyA4MLySNRilVCi23YT90RAwqvI2uQEk5+buxYdpAfuwpA==" }, "Microsoft.Extensions.FileProviders.Abstractions": { "type": "Transitive", @@ -164,14 +163,14 @@ }, "Microsoft.Extensions.Hosting.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "resolved": "8.0.1", + "contentHash": "nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging": { @@ -188,10 +187,10 @@ }, "Microsoft.Extensions.Logging.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Options": { @@ -210,59 +209,59 @@ }, "Microsoft.TestPlatform.ObjectModel": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "KkwhjQevuDj0aBRoPLY6OLAhGqbPUEBuKLbaCs0kUVw29qiOYncdORd4mLVJbn9vGZ7/iFGQ/+AoJl0Tu5Umdg==", + "resolved": "17.13.0", + "contentHash": "bt0E0Dx+iqW97o4A59RCmUmz/5NarJ7LRL+jXbSHod72ibL5XdNm1Ke+UO5tFhBG4VwHLcSjqq9BUSblGNWamw==", "dependencies": { "System.Reflection.Metadata": "1.6.0" } }, "Microsoft.TestPlatform.TestHost": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "LWpMdfqhHvcUkeMCvNYJO8QlPLlYz9XPPb+ZbaXIKhdmjAV0wqTSrTiW5FLaf7RRZT50AQADDOYMOe0HxDxNgA==", + "resolved": "17.13.0", + "contentHash": "9GGw08Dc3AXspjekdyTdZ/wYWFlxbgcF0s7BKxzVX+hzAwpifDOdxM+ceVaaJSQOwqt3jtuNlHn3XTpKUS9x9Q==", "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "17.10.0", + "Microsoft.TestPlatform.ObjectModel": "17.13.0", "Newtonsoft.Json": "13.0.1" } }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "jchWPuXJC4N9g1jZ7ZPSfbDSBfMmIgFw5w9VqAT5A9USdE/10IMT83wL48KkTbR7eHdphghe06iGKk7IPhYweA==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "21.0.2" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Messaging.RabbitMQ": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "/tj7IO/SHYXNRfxh7iIMms9TurhtCIozZp5lDFvd/WkPgKWZyyyZH8wxkNb9r7jIh/vXkrGJcPCxR30uoET+7g==", + "resolved": "2.0.4", + "contentHash": "tmEERdnqJq1STVGx30+wVyj7AtvtT8K2j/59lSiZ7k58ZdRku601Gs6k1KZ/sfGeobCjaB4gI7GROxK+lN6gbg==", "dependencies": { - "Monai.Deploy.Messaging": "2.0.3", - "Polly": "8.4.0", + "Monai.Deploy.Messaging": "2.0.4", + "Polly": "8.5.2", "RabbitMQ.Client": "6.8.1" } }, "Monai.Deploy.Storage": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "ceVSHBPDMxWV7C6TLBoJmJt3X0RQmdPnm+9NU17Zs0TGE58QvSEHn4GJODtK9+ncgUJICjBhPFcNHV40ybEepQ==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.105", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", - "Monai.Deploy.Storage.S3Policy": "1.0.1", - "System.IO.Abstractions": "21.0.2" + "AWSSDK.SecurityToken": "3.7.401.68", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", + "Monai.Deploy.Storage.S3Policy": "1.0.2", + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage.S3Policy": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "mgLlLRphh+vrVKen72jfEzBcoOhAzCjavGMUzWIjIFh5avmb2RJNbQERLSISOCjWnqPscc/xSPKFUUpLMOLdYw==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, @@ -273,21 +272,21 @@ }, "NLog": { "type": "Transitive", - "resolved": "5.3.2", - "contentHash": "cQRQZuDMjSyMe9EQBnI9v55YAMMz8GAfFd6fFJ6tc/kXnG7Hze8p1I8MgvWSBG6E36wA8vSxRrlm8uSIG+SENg==" + "resolved": "5.4.0", + "contentHash": "LwMcGSW3soF3/SL68rlJN3Eh3ktrAPycC3zZR/07OYBPraZUu0bygEC7kIN10lUQgMXT4s84Fi1chglGdGrQEg==" }, "Polly": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "z2EeUutuy49jBQyZ5s2FUuTCGx3GCzJ0cJ2HbjWwks94TsC6bKTtAHKBkMZOa/DyYRl5yIX7MshvMTWl1J6RNg==", + "resolved": "8.5.2", + "contentHash": "vbXsGgkG86nG+TOwY+SmtrGrRHmHH0DQaxtILx//d3Dz/ocJ8izSNYzdvU2gEtWa/LDD8zJLvD3HdjEkdlvkhg==", "dependencies": { - "Polly.Core": "8.4.0" + "Polly.Core": "8.5.2" } }, "Polly.Core": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "3AZxuP//pxOeBo9tQs7/tz4Z5TTbu4BYfjpaXZD0JYKJo98ngN9TMUz1nybh4k0ykWkMBpGZALV/AmVIE3ew7A==" + "resolved": "8.5.2", + "contentHash": "1MJKdxv4zwDmiWvYvVN24DsrWUfgQ4F83voH8bhbtLMdPuGy8CfTUzsgQhvyrl1a7hrM6f/ydwLVdVUI0xooUw==" }, "RabbitMQ.Client": { "type": "Transitive", @@ -305,16 +304,19 @@ }, "System.Diagnostics.DiagnosticSource": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" + "resolved": "6.0.0", + "contentHash": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } }, "System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ewYQGK0kzOpfiYCF0P0nqPAnKqGhqiXAWDFeMtQtwJyERA2s7nLx7KEALwDvIFjZvX6677IsPREoLIU9oBOQvA==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "System.Memory": { @@ -334,28 +336,18 @@ }, "System.Text.Encoding.CodePages": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "6.0.1", + "contentHash": "OV04vEWTSDXzaAJCjylOIdjB7Z7QTYQcz4/ATZSiG8PLkZLsbtaADj0Ydj4FdFnqq4PAwEA7SuILE+6ka4cn6A==" }, "System.Text.Encodings.Web": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "8.0.0", + "contentHash": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==" }, "System.Text.Json": { "type": "Transitive", - "resolved": "6.0.9", - "contentHash": "2j16oUgtIzl7Xtk7demG0i/v5aU/ZvULcAnJvPb63U3ZhXJ494UYcxuEj5Fs49i3XDrk5kU/8I+6l9zRCw3cJw==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "6.0.0" - } + "resolved": "8.0.5", + "contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==" }, "System.Threading.Channels": { "type": "Transitive", @@ -364,15 +356,15 @@ }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ViPtOy4lAlmWq9GDEwiE5C9XSgDGHUWMRvVvruI38pbikUXkgu7xnCVW7PYdQOjS+iWWcQHt+U7oyPedfnWSHg==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ii6Xgru3ozRaLezwE/lKAPTdE3ES+S3P3ul+QrMxIP10GN+LF0JAi4aWqb8lxzEAwBMSAeK/QipEpVt4KYlTOg==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "xunit.abstractions": { @@ -418,21 +410,21 @@ "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "HL7-dotnetcore": "[2.36.0, )", + "HL7-dotnetcore": "[2.39.1, )", "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.6, )", + "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.14, )", "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Messaging.RabbitMQ": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )", - "fo-dicom": "[5.1.2, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Messaging.RabbitMQ": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )", + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )", - "System.IO.Abstractions": "[21.0.2, )" + "Ardalis.GuardClauses": "[4.6.0, )", + "System.IO.Abstractions": "[21.3.1, )" } }, "monai.deploy.informaticsgateway.configuration": { @@ -447,7 +439,7 @@ "dependencies": { "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", - "NLog": "[5.3.2, )" + "NLog": "[5.4.0, )" } } } diff --git a/src/Database/Api/packages.lock.json b/src/Database/Api/packages.lock.json index 549f3aea..f4ce0b6c 100644 --- a/src/Database/Api/packages.lock.json +++ b/src/Database/Api/packages.lock.json @@ -4,55 +4,55 @@ "net8.0": { "NLog": { "type": "Direct", - "requested": "[5.3.2, )", - "resolved": "5.3.2", - "contentHash": "cQRQZuDMjSyMe9EQBnI9v55YAMMz8GAfFd6fFJ6tc/kXnG7Hze8p1I8MgvWSBG6E36wA8vSxRrlm8uSIG+SENg==" + "requested": "[5.4.0, )", + "resolved": "5.4.0", + "contentHash": "LwMcGSW3soF3/SL68rlJN3Eh3ktrAPycC3zZR/07OYBPraZUu0bygEC7kIN10lUQgMXT4s84Fi1chglGdGrQEg==" }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.304.15", - "contentHash": "XLfl4/wuTDWXH73FjGUx5P6Jf6FNLTlyVwWvQ0b/WyBOtZVJxPlCKUTYDn06VdqcLGg3uPP6FKJqnplKsnMHMw==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.105", - "contentHash": "axqpqdA4QZvHzEdGDLk5/IpPQsUTIcnVDulz4uyE+UEeYAHpFcp/BNQxmmIU4Gdv0G5KwQWKiaUaZPuLVN0Esg==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.304.15, 4.0.0)" + "AWSSDK.Core": "[3.7.402.25, 4.0.0)" } }, "CommunityToolkit.HighPerformance": { "type": "Transitive", - "resolved": "8.2.2", - "contentHash": "+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==" + "resolved": "8.3.2", + "contentHash": "1Os81ua0FmIOtiSgOk5C1KBraQ3SDfxs/7BG4qDagm48nGplr//lAVqLH9I2TLDVqRFdhqTUaEITFA5Ho/Ovkw==" }, "fo-dicom": { "type": "Transitive", - "resolved": "5.1.2", - "contentHash": "2lM76Vq+GRdwyY3BQiUJ+V6yxdFiOG4ysLJC7qNTxLsq/1pr5ZTTXiIzWQa+uJ0MuKnzzFogV5+meDflsyjs2g==", + "resolved": "5.2.1", + "contentHash": "Oa6raonOj/Xm+a1j3O89OlUXJIF55jLAKjCuXKINYJMJ+hJ/9Al1YOxPs1hut8DBKvHbgYtgdRFtqGNS+Qt6Uw==", "dependencies": { - "CommunityToolkit.HighPerformance": "8.2.2", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "CommunityToolkit.HighPerformance": "8.3.2", + "Microsoft.Bcl.AsyncInterfaces": "8.0.0", "Microsoft.Bcl.HashCode": "1.1.1", "Microsoft.Extensions.DependencyInjection": "6.0.1", "Microsoft.Extensions.Logging": "6.0.0", "Microsoft.Extensions.Options": "6.0.0", "System.Buffers": "4.5.1", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "6.0.9", + "System.Text.Encoding.CodePages": "6.0.1", + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.5", "System.Threading.Channels": "6.0.0" } }, "HL7-dotnetcore": { "type": "Transitive", - "resolved": "2.36.0", - "contentHash": "N1HLMeIqYuY+4O69ItgZJoDBnnpNkK5N2pClceTJ2nFJxsP48iCsA4iz3tm43Yszi4r/vaThoc3UoLBfGP3vKw==" + "resolved": "2.39.1", + "contentHash": "xbgykLlAr644SfYY2oxnpYYto+JFYLuUHt00hRTlhpB+5DiFC2oVSVRA+8yyq/lmkjTNidtTbN9nyK0ft4DSfw==" }, "Macross.Json.Extensions": { "type": "Transitive", @@ -61,8 +61,8 @@ }, "Microsoft.Bcl.AsyncInterfaces": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==" + "resolved": "8.0.0", + "contentHash": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==" }, "Microsoft.Bcl.HashCode": { "type": "Transitive", @@ -71,8 +71,8 @@ }, "Microsoft.EntityFrameworkCore.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "X7wSSBNFRuN8j8M9HDYG7rPpEeyhY+PdJZR9rftmgvsZH0eK5+bZ3b3As8iO4rLEpjsBzDnrgSIY6q2F3HQatw==" + "resolved": "8.0.14", + "contentHash": "Om8/jdWyx9eKFkA1YEgxk13KjGIzA8teLgG7iNFunsI2+MT6UT54Eb4t6oe4NQlIaACj5voUe6szVAQe9GKwDA==" }, "Microsoft.Extensions.Configuration.Abstractions": { "type": "Transitive", @@ -93,34 +93,33 @@ }, "Microsoft.Extensions.DependencyInjection.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==" + "resolved": "8.0.2", + "contentHash": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==" }, "Microsoft.Extensions.Diagnostics.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==", + "resolved": "8.0.1", + "contentHash": "elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", - "System.Diagnostics.DiagnosticSource": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "Wtylr3ucMUQ+/6x5ngRtBQ0D0TVloWE3hbwUEhwE16OZHB66uqAEVnEvcAXxW2IFuVAuEHMXX5GebfkbSZQSTw==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.6", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.1", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.14", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.3", "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "GiHK4B5Xsf5YzL73kup2zJoJfDx5RJYBd0LZN6dx8XyOSoZnh7NNrMP+vTLxAJVp//JxHk0KIhBnW9YuFrSVig==" + "resolved": "8.0.14", + "contentHash": "se5sdveMiA3PUOWchOZXY/sGA50MrJ/Mg/G6CdQBtyA4MLySNRilVCi23YT90RAwqvI2uQEk5+buxYdpAfuwpA==" }, "Microsoft.Extensions.FileProviders.Abstractions": { "type": "Transitive", @@ -132,14 +131,14 @@ }, "Microsoft.Extensions.Hosting.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "resolved": "8.0.1", + "contentHash": "nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging": { @@ -156,10 +155,10 @@ }, "Microsoft.Extensions.Logging.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Options": { @@ -178,42 +177,42 @@ }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "jchWPuXJC4N9g1jZ7ZPSfbDSBfMmIgFw5w9VqAT5A9USdE/10IMT83wL48KkTbR7eHdphghe06iGKk7IPhYweA==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "21.0.2" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Messaging.RabbitMQ": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "/tj7IO/SHYXNRfxh7iIMms9TurhtCIozZp5lDFvd/WkPgKWZyyyZH8wxkNb9r7jIh/vXkrGJcPCxR30uoET+7g==", + "resolved": "2.0.4", + "contentHash": "tmEERdnqJq1STVGx30+wVyj7AtvtT8K2j/59lSiZ7k58ZdRku601Gs6k1KZ/sfGeobCjaB4gI7GROxK+lN6gbg==", "dependencies": { - "Monai.Deploy.Messaging": "2.0.3", - "Polly": "8.4.0", + "Monai.Deploy.Messaging": "2.0.4", + "Polly": "8.5.2", "RabbitMQ.Client": "6.8.1" } }, "Monai.Deploy.Storage": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "ceVSHBPDMxWV7C6TLBoJmJt3X0RQmdPnm+9NU17Zs0TGE58QvSEHn4GJODtK9+ncgUJICjBhPFcNHV40ybEepQ==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.105", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", - "Monai.Deploy.Storage.S3Policy": "1.0.1", - "System.IO.Abstractions": "21.0.2" + "AWSSDK.SecurityToken": "3.7.401.68", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", + "Monai.Deploy.Storage.S3Policy": "1.0.2", + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage.S3Policy": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "mgLlLRphh+vrVKen72jfEzBcoOhAzCjavGMUzWIjIFh5avmb2RJNbQERLSISOCjWnqPscc/xSPKFUUpLMOLdYw==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, @@ -224,16 +223,16 @@ }, "Polly": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "z2EeUutuy49jBQyZ5s2FUuTCGx3GCzJ0cJ2HbjWwks94TsC6bKTtAHKBkMZOa/DyYRl5yIX7MshvMTWl1J6RNg==", + "resolved": "8.5.2", + "contentHash": "vbXsGgkG86nG+TOwY+SmtrGrRHmHH0DQaxtILx//d3Dz/ocJ8izSNYzdvU2gEtWa/LDD8zJLvD3HdjEkdlvkhg==", "dependencies": { - "Polly.Core": "8.4.0" + "Polly.Core": "8.5.2" } }, "Polly.Core": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "3AZxuP//pxOeBo9tQs7/tz4Z5TTbu4BYfjpaXZD0JYKJo98ngN9TMUz1nybh4k0ykWkMBpGZALV/AmVIE3ew7A==" + "resolved": "8.5.2", + "contentHash": "1MJKdxv4zwDmiWvYvVN24DsrWUfgQ4F83voH8bhbtLMdPuGy8CfTUzsgQhvyrl1a7hrM6f/ydwLVdVUI0xooUw==" }, "RabbitMQ.Client": { "type": "Transitive", @@ -251,16 +250,19 @@ }, "System.Diagnostics.DiagnosticSource": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" + "resolved": "6.0.0", + "contentHash": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } }, "System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ewYQGK0kzOpfiYCF0P0nqPAnKqGhqiXAWDFeMtQtwJyERA2s7nLx7KEALwDvIFjZvX6677IsPREoLIU9oBOQvA==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "System.Memory": { @@ -275,28 +277,18 @@ }, "System.Text.Encoding.CodePages": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "6.0.1", + "contentHash": "OV04vEWTSDXzaAJCjylOIdjB7Z7QTYQcz4/ATZSiG8PLkZLsbtaADj0Ydj4FdFnqq4PAwEA7SuILE+6ka4cn6A==" }, "System.Text.Encodings.Web": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "8.0.0", + "contentHash": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==" }, "System.Text.Json": { "type": "Transitive", - "resolved": "6.0.9", - "contentHash": "2j16oUgtIzl7Xtk7demG0i/v5aU/ZvULcAnJvPb63U3ZhXJ494UYcxuEj5Fs49i3XDrk5kU/8I+6l9zRCw3cJw==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "6.0.0" - } + "resolved": "8.0.5", + "contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==" }, "System.Threading.Channels": { "type": "Transitive", @@ -305,35 +297,35 @@ }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ViPtOy4lAlmWq9GDEwiE5C9XSgDGHUWMRvVvruI38pbikUXkgu7xnCVW7PYdQOjS+iWWcQHt+U7oyPedfnWSHg==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ii6Xgru3ozRaLezwE/lKAPTdE3ES+S3P3ul+QrMxIP10GN+LF0JAi4aWqb8lxzEAwBMSAeK/QipEpVt4KYlTOg==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "HL7-dotnetcore": "[2.36.0, )", + "HL7-dotnetcore": "[2.39.1, )", "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.6, )", + "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.14, )", "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Messaging.RabbitMQ": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )", - "fo-dicom": "[5.1.2, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Messaging.RabbitMQ": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )", + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )", - "System.IO.Abstractions": "[21.0.2, )" + "Ardalis.GuardClauses": "[4.6.0, )", + "System.IO.Abstractions": "[21.3.1, )" } }, "monai.deploy.informaticsgateway.configuration": { diff --git a/src/Database/EntityFramework/Monai.Deploy.InformaticsGateway.Database.EntityFramework.csproj b/src/Database/EntityFramework/Monai.Deploy.InformaticsGateway.Database.EntityFramework.csproj index 17a0a621..5bcc827c 100755 --- a/src/Database/EntityFramework/Monai.Deploy.InformaticsGateway.Database.EntityFramework.csproj +++ b/src/Database/EntityFramework/Monai.Deploy.InformaticsGateway.Database.EntityFramework.csproj @@ -36,12 +36,12 @@ - - - - - - + + + + + + diff --git a/src/Database/EntityFramework/Test/Monai.Deploy.InformaticsGateway.Database.EntityFramework.Test.csproj b/src/Database/EntityFramework/Test/Monai.Deploy.InformaticsGateway.Database.EntityFramework.Test.csproj index 9c7fbf91..c1cf9d76 100755 --- a/src/Database/EntityFramework/Test/Monai.Deploy.InformaticsGateway.Database.EntityFramework.Test.csproj +++ b/src/Database/EntityFramework/Test/Monai.Deploy.InformaticsGateway.Database.EntityFramework.Test.csproj @@ -22,18 +22,18 @@ true - + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all - + diff --git a/src/Database/EntityFramework/Test/packages.lock.json b/src/Database/EntityFramework/Test/packages.lock.json index 7f4f7863..caed38f2 100644 --- a/src/Database/EntityFramework/Test/packages.lock.json +++ b/src/Database/EntityFramework/Test/packages.lock.json @@ -4,27 +4,27 @@ "net8.0": { "coverlet.collector": { "type": "Direct", - "requested": "[6.0.2, )", - "resolved": "6.0.2", - "contentHash": "bJShQ6uWRTQ100ZeyiMqcFlhP7WJ+bCuabUs885dJiBEzMsJMSFr7BOyeCw4rgvQokteGi5rKQTlkhfQPUXg2A==" + "requested": "[6.0.4, )", + "resolved": "6.0.4", + "contentHash": "lkhqpF8Pu2Y7IiN7OntbsTtdbpR1syMsm2F3IgX6ootA4ffRqWL5jF7XipHuZQTdVuWG/gVAAcf8mjk8Tz0xPg==" }, "Microsoft.EntityFrameworkCore.InMemory": { "type": "Direct", - "requested": "[8.0.6, )", - "resolved": "8.0.6", - "contentHash": "/ATG+iNpRELMJ1HJgcGPWgqOFGARrK2LCuZtX8yPXK421HS7krDe0zkyFVucS9YVHnMWk1Asa8zZCtvHqVkk2g==", + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "q0/yGN42dy/ph9tV1ecuvrzpfkGuGdjyfdWNSXylQ0CDUidBCG6o+srOyOPg32gbjV0nLRv9YFkrS4xprXwAew==", "dependencies": { - "Microsoft.EntityFrameworkCore": "8.0.6" + "Microsoft.EntityFrameworkCore": "8.0.14" } }, "Microsoft.NET.Test.Sdk": { "type": "Direct", - "requested": "[17.10.0, )", - "resolved": "17.10.0", - "contentHash": "0/2HeACkaHEYU3wc83YlcD2Fi4LMtECJjqrtvw0lPi9DCEa35zSPt1j4fuvM8NagjDqJuh1Ja35WcRtn1Um6/A==", + "requested": "[17.13.0, )", + "resolved": "17.13.0", + "contentHash": "W19wCPizaIC9Zh47w8wWI/yxuqR7/dtABwOrc8r2jX/8mUNxM2vw4fXDh+DJTeogxV+KzKwg5jNNGQVwf3LXyA==", "dependencies": { - "Microsoft.CodeCoverage": "17.10.0", - "Microsoft.TestPlatform.TestHost": "17.10.0" + "Microsoft.CodeCoverage": "17.13.0", + "Microsoft.TestPlatform.TestHost": "17.13.0" } }, "Moq": { @@ -55,20 +55,20 @@ }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.304.15", - "contentHash": "XLfl4/wuTDWXH73FjGUx5P6Jf6FNLTlyVwWvQ0b/WyBOtZVJxPlCKUTYDn06VdqcLGg3uPP6FKJqnplKsnMHMw==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.105", - "contentHash": "axqpqdA4QZvHzEdGDLk5/IpPQsUTIcnVDulz4uyE+UEeYAHpFcp/BNQxmmIU4Gdv0G5KwQWKiaUaZPuLVN0Esg==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.304.15, 4.0.0)" + "AWSSDK.Core": "[3.7.402.25, 4.0.0)" } }, "Castle.Core": { @@ -81,31 +81,31 @@ }, "CommunityToolkit.HighPerformance": { "type": "Transitive", - "resolved": "8.2.2", - "contentHash": "+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==" + "resolved": "8.3.2", + "contentHash": "1Os81ua0FmIOtiSgOk5C1KBraQ3SDfxs/7BG4qDagm48nGplr//lAVqLH9I2TLDVqRFdhqTUaEITFA5Ho/Ovkw==" }, "fo-dicom": { "type": "Transitive", - "resolved": "5.1.2", - "contentHash": "2lM76Vq+GRdwyY3BQiUJ+V6yxdFiOG4ysLJC7qNTxLsq/1pr5ZTTXiIzWQa+uJ0MuKnzzFogV5+meDflsyjs2g==", + "resolved": "5.2.1", + "contentHash": "Oa6raonOj/Xm+a1j3O89OlUXJIF55jLAKjCuXKINYJMJ+hJ/9Al1YOxPs1hut8DBKvHbgYtgdRFtqGNS+Qt6Uw==", "dependencies": { - "CommunityToolkit.HighPerformance": "8.2.2", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "CommunityToolkit.HighPerformance": "8.3.2", + "Microsoft.Bcl.AsyncInterfaces": "8.0.0", "Microsoft.Bcl.HashCode": "1.1.1", "Microsoft.Extensions.DependencyInjection": "6.0.1", "Microsoft.Extensions.Logging": "6.0.0", "Microsoft.Extensions.Options": "6.0.0", "System.Buffers": "4.5.1", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "6.0.9", + "System.Text.Encoding.CodePages": "6.0.1", + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.5", "System.Threading.Channels": "6.0.0" } }, "HL7-dotnetcore": { "type": "Transitive", - "resolved": "2.36.0", - "contentHash": "N1HLMeIqYuY+4O69ItgZJoDBnnpNkK5N2pClceTJ2nFJxsP48iCsA4iz3tm43Yszi4r/vaThoc3UoLBfGP3vKw==" + "resolved": "2.39.1", + "contentHash": "xbgykLlAr644SfYY2oxnpYYto+JFYLuUHt00hRTlhpB+5DiFC2oVSVRA+8yyq/lmkjTNidtTbN9nyK0ft4DSfw==" }, "Humanizer.Core": { "type": "Transitive", @@ -119,8 +119,8 @@ }, "Microsoft.Bcl.AsyncInterfaces": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==" + "resolved": "8.0.0", + "contentHash": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==" }, "Microsoft.Bcl.HashCode": { "type": "Transitive", @@ -178,76 +178,76 @@ }, "Microsoft.CodeCoverage": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "yC7oSlnR54XO5kOuHlVOKtxomNNN1BWXX8lK1G2jaPXT9sUok7kCOoA4Pgs0qyFaCtMrNsprztYMeoEGqCm4uA==" + "resolved": "17.13.0", + "contentHash": "9LIUy0y+DvUmEPtbRDw6Bay3rzwqFV8P4efTrK4CZhQle3M/QwLPjISghfcolmEGAPWxuJi6m98ZEfk4VR4Lfg==" }, "Microsoft.Data.Sqlite.Core": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "umhZ0ZF2RI81rGFTnYmCxI+Euj4Aqe/6Y4+8CxN9OVJNGDNIqB5laJ3wxQTU8zXCcm2k9F7FL+/6RVoOT4z1Fw==", + "resolved": "8.0.14", + "contentHash": "MT/9fCazlL4T10BwCQCxvUXOmtU4rR1qDl2mpePFhmuXONafUjXUf8FH94IR79ISxrGVHxsOWvwGzgKi6RSE/g==", "dependencies": { "SQLitePCLRaw.core": "2.1.6" } }, "Microsoft.EntityFrameworkCore": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "Ms5e5QuBAjVIuQsGumeLvkgMiOpnj6wxPvwBIoe1NfTkseWK4NZYztnhgDlpkCPkrUmJEXLv69kl349Ours30Q==", + "resolved": "8.0.14", + "contentHash": "HNn+NPKCm7rR7ij7IRCCbuImaMulFJGloyIbMwi3Ews77RsthM8gxpTZciFLgRYPsBtszKpdIClEwnWmP0vjUg==", "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "8.0.6", - "Microsoft.EntityFrameworkCore.Analyzers": "8.0.6", - "Microsoft.Extensions.Caching.Memory": "8.0.0", - "Microsoft.Extensions.Logging": "8.0.0" + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.14", + "Microsoft.EntityFrameworkCore.Analyzers": "8.0.14", + "Microsoft.Extensions.Caching.Memory": "8.0.1", + "Microsoft.Extensions.Logging": "8.0.1" } }, "Microsoft.EntityFrameworkCore.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "X7wSSBNFRuN8j8M9HDYG7rPpEeyhY+PdJZR9rftmgvsZH0eK5+bZ3b3As8iO4rLEpjsBzDnrgSIY6q2F3HQatw==" + "resolved": "8.0.14", + "contentHash": "Om8/jdWyx9eKFkA1YEgxk13KjGIzA8teLgG7iNFunsI2+MT6UT54Eb4t6oe4NQlIaACj5voUe6szVAQe9GKwDA==" }, "Microsoft.EntityFrameworkCore.Analyzers": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "fDNtuQ4lAaPaCOlsrwUck/GvnF4QLeDpMmE1L5QtxZpMSmWfnL2/vk8sDL9OVTWcfprooI9V5MNpIx3/Tq5ehg==" + "resolved": "8.0.14", + "contentHash": "lzNb3s4t5JDMHGoUFuX/f977dFythvmzGFJxvjlhExdiATPKQfquo2NM0uX8Kelfq04jRljpdbRzcsSsK1q9Tw==" }, "Microsoft.EntityFrameworkCore.Design": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "4OT+mH+8EB4Kfn1ENpDx2Ssx459j200gvdhDOKq5lkHmHzkRpmEDKS5GfqaLZvBLJKWu1FVGQ7Wnczcjb0hX4g==", + "resolved": "8.0.14", + "contentHash": "ncCvbJYGXK7eSOVqfQNXLaxMWKGaKSYX1VJZjyJXg3IxxmF50B8p/isprgrVLR+SlQwTG1lmhPAPn0dOvCqlrw==", "dependencies": { "Humanizer.Core": "2.14.1", "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0", - "Microsoft.EntityFrameworkCore.Relational": "8.0.6", - "Microsoft.Extensions.DependencyModel": "8.0.0", + "Microsoft.EntityFrameworkCore.Relational": "8.0.14", + "Microsoft.Extensions.DependencyModel": "8.0.2", "Mono.TextTemplating": "2.2.1" } }, "Microsoft.EntityFrameworkCore.Relational": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "chhfmLusCGLGvNYtvMji6KGQlduPDnJsStG/LjS8qJhFWJDDzTZpSr2LHowewcxMrMo/Axc6Jwe+WwSi/vlkTg==", + "resolved": "8.0.14", + "contentHash": "cPEeIk9nFO3+hxj9tp5AvTFdcTZkVPJCOFUiagbf37KhPGtiG0ZWpl15xOzLYTDAYjF5kxH/jcuDYGlLACJEmA==", "dependencies": { - "Microsoft.EntityFrameworkCore": "8.0.6", + "Microsoft.EntityFrameworkCore": "8.0.14", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" } }, "Microsoft.EntityFrameworkCore.Sqlite": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "nC4cZN4zReTb22qd9WDU0eDmlXvkyf2g2pqQ3VIHJbkpJcdWSY/PDgwGpbpShsVcAjXbkjGiUcv9aGwa61xQPw==", + "resolved": "8.0.14", + "contentHash": "iqrhkOirZ9mm3Yu+ut9698VDn6WSykfr9NMECIe6gObUZLxAsg28f1JmIjx2n4pKFm5Uz5sYJ3k4AUnrJbgUag==", "dependencies": { - "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.6", + "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.14", "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" } }, "Microsoft.EntityFrameworkCore.Sqlite.Core": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "87xfPtqSouxWWdynYZv/rubd0rOUeiN9+XeoMWQzpZm/5svH1TuvzFODGIY0zKuXS18NiOFyHl9N6///eaEs/Q==", + "resolved": "8.0.14", + "contentHash": "TcbHy/SdKTcrxlgx14uicVMqrBTu3SP3STGicR+JzYG4I3mVtsBgqtArt6mmUtA7UZj7sogXJ6EFpSyNsJU8Zg==", "dependencies": { - "Microsoft.Data.Sqlite.Core": "8.0.6", - "Microsoft.EntityFrameworkCore.Relational": "8.0.6", - "Microsoft.Extensions.DependencyModel": "8.0.0" + "Microsoft.Data.Sqlite.Core": "8.0.14", + "Microsoft.EntityFrameworkCore.Relational": "8.0.14", + "Microsoft.Extensions.DependencyModel": "8.0.2" } }, "Microsoft.Extensions.Caching.Abstractions": { @@ -260,13 +260,13 @@ }, "Microsoft.Extensions.Caching.Memory": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==", + "resolved": "8.0.1", + "contentHash": "HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==", "dependencies": { "Microsoft.Extensions.Caching.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", "Microsoft.Extensions.Primitives": "8.0.0" } }, @@ -289,8 +289,8 @@ }, "Microsoft.Extensions.Configuration.FileExtensions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "McP+Lz/EKwvtCv48z0YImw+L1gi1gy5rHhNaNIY2CrjloV+XY8gydT8DjMR6zWeL13AFK+DioVpppwAuO1Gi1w==", + "resolved": "8.0.1", + "contentHash": "EJzSNO9oaAXnTdtdNO6npPRsIIeZCBSNmdQ091VDO7fBiOtJAAeEq6dtrVXIi3ZyjC5XRSAtVvF8SzcneRHqKQ==", "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", @@ -301,63 +301,57 @@ }, "Microsoft.Extensions.Configuration.Json": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "C2wqUoh9OmRL1akaCcKSTmRU8z0kckfImG7zLNI8uyi47Lp+zd5LWAD17waPQEqCz3ioWOCrFUo+JJuoeZLOBw==", + "resolved": "8.0.1", + "contentHash": "L89DLNuimOghjV3tLx0ArFDwVEJD6+uGB3BMCMX01kaLzXkaXHb2021xOMl2QOxUxbdePKUZsUY7n2UUkycjRg==", "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "System.Text.Json": "8.0.0" + "Microsoft.Extensions.Configuration.FileExtensions": "8.0.1", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0" } }, "Microsoft.Extensions.DependencyInjection": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "resolved": "8.0.1", + "contentHash": "BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.DependencyInjection.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==" + "resolved": "8.0.2", + "contentHash": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==" }, "Microsoft.Extensions.DependencyModel": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==", - "dependencies": { - "System.Text.Encodings.Web": "8.0.0", - "System.Text.Json": "8.0.0" - } + "resolved": "8.0.2", + "contentHash": "mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==" }, "Microsoft.Extensions.Diagnostics.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==", + "resolved": "8.0.1", + "contentHash": "elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", - "System.Diagnostics.DiagnosticSource": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "Wtylr3ucMUQ+/6x5ngRtBQ0D0TVloWE3hbwUEhwE16OZHB66uqAEVnEvcAXxW2IFuVAuEHMXX5GebfkbSZQSTw==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.6", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.1", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.14", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.3", "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "GiHK4B5Xsf5YzL73kup2zJoJfDx5RJYBd0LZN6dx8XyOSoZnh7NNrMP+vTLxAJVp//JxHk0KIhBnW9YuFrSVig==" + "resolved": "8.0.14", + "contentHash": "se5sdveMiA3PUOWchOZXY/sGA50MrJ/Mg/G6CdQBtyA4MLySNRilVCi23YT90RAwqvI2uQEk5+buxYdpAfuwpA==" }, "Microsoft.Extensions.FileProviders.Abstractions": { "type": "Transitive", @@ -384,32 +378,32 @@ }, "Microsoft.Extensions.Hosting.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "resolved": "8.0.1", + "contentHash": "nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "resolved": "8.0.1", + "contentHash": "4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==", "dependencies": { - "Microsoft.Extensions.DependencyInjection": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0" + "Microsoft.Extensions.DependencyInjection": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Logging.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Options": { @@ -428,59 +422,59 @@ }, "Microsoft.TestPlatform.ObjectModel": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "KkwhjQevuDj0aBRoPLY6OLAhGqbPUEBuKLbaCs0kUVw29qiOYncdORd4mLVJbn9vGZ7/iFGQ/+AoJl0Tu5Umdg==", + "resolved": "17.13.0", + "contentHash": "bt0E0Dx+iqW97o4A59RCmUmz/5NarJ7LRL+jXbSHod72ibL5XdNm1Ke+UO5tFhBG4VwHLcSjqq9BUSblGNWamw==", "dependencies": { "System.Reflection.Metadata": "1.6.0" } }, "Microsoft.TestPlatform.TestHost": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "LWpMdfqhHvcUkeMCvNYJO8QlPLlYz9XPPb+ZbaXIKhdmjAV0wqTSrTiW5FLaf7RRZT50AQADDOYMOe0HxDxNgA==", + "resolved": "17.13.0", + "contentHash": "9GGw08Dc3AXspjekdyTdZ/wYWFlxbgcF0s7BKxzVX+hzAwpifDOdxM+ceVaaJSQOwqt3jtuNlHn3XTpKUS9x9Q==", "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "17.10.0", + "Microsoft.TestPlatform.ObjectModel": "17.13.0", "Newtonsoft.Json": "13.0.1" } }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "jchWPuXJC4N9g1jZ7ZPSfbDSBfMmIgFw5w9VqAT5A9USdE/10IMT83wL48KkTbR7eHdphghe06iGKk7IPhYweA==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "21.0.2" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Messaging.RabbitMQ": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "/tj7IO/SHYXNRfxh7iIMms9TurhtCIozZp5lDFvd/WkPgKWZyyyZH8wxkNb9r7jIh/vXkrGJcPCxR30uoET+7g==", + "resolved": "2.0.4", + "contentHash": "tmEERdnqJq1STVGx30+wVyj7AtvtT8K2j/59lSiZ7k58ZdRku601Gs6k1KZ/sfGeobCjaB4gI7GROxK+lN6gbg==", "dependencies": { - "Monai.Deploy.Messaging": "2.0.3", - "Polly": "8.4.0", + "Monai.Deploy.Messaging": "2.0.4", + "Polly": "8.5.2", "RabbitMQ.Client": "6.8.1" } }, "Monai.Deploy.Storage": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "ceVSHBPDMxWV7C6TLBoJmJt3X0RQmdPnm+9NU17Zs0TGE58QvSEHn4GJODtK9+ncgUJICjBhPFcNHV40ybEepQ==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.105", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", - "Monai.Deploy.Storage.S3Policy": "1.0.1", - "System.IO.Abstractions": "21.0.2" + "AWSSDK.SecurityToken": "3.7.401.68", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", + "Monai.Deploy.Storage.S3Policy": "1.0.2", + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage.S3Policy": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "mgLlLRphh+vrVKen72jfEzBcoOhAzCjavGMUzWIjIFh5avmb2RJNbQERLSISOCjWnqPscc/xSPKFUUpLMOLdYw==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, @@ -499,21 +493,21 @@ }, "NLog": { "type": "Transitive", - "resolved": "5.3.2", - "contentHash": "cQRQZuDMjSyMe9EQBnI9v55YAMMz8GAfFd6fFJ6tc/kXnG7Hze8p1I8MgvWSBG6E36wA8vSxRrlm8uSIG+SENg==" + "resolved": "5.4.0", + "contentHash": "LwMcGSW3soF3/SL68rlJN3Eh3ktrAPycC3zZR/07OYBPraZUu0bygEC7kIN10lUQgMXT4s84Fi1chglGdGrQEg==" }, "Polly": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "z2EeUutuy49jBQyZ5s2FUuTCGx3GCzJ0cJ2HbjWwks94TsC6bKTtAHKBkMZOa/DyYRl5yIX7MshvMTWl1J6RNg==", + "resolved": "8.5.2", + "contentHash": "vbXsGgkG86nG+TOwY+SmtrGrRHmHH0DQaxtILx//d3Dz/ocJ8izSNYzdvU2gEtWa/LDD8zJLvD3HdjEkdlvkhg==", "dependencies": { - "Polly.Core": "8.4.0" + "Polly.Core": "8.5.2" } }, "Polly.Core": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "3AZxuP//pxOeBo9tQs7/tz4Z5TTbu4BYfjpaXZD0JYKJo98ngN9TMUz1nybh4k0ykWkMBpGZALV/AmVIE3ew7A==" + "resolved": "8.5.2", + "contentHash": "1MJKdxv4zwDmiWvYvVN24DsrWUfgQ4F83voH8bhbtLMdPuGy8CfTUzsgQhvyrl1a7hrM6f/ydwLVdVUI0xooUw==" }, "RabbitMQ.Client": { "type": "Transitive", @@ -620,11 +614,6 @@ "System.Composition.Runtime": "6.0.0" } }, - "System.Diagnostics.DiagnosticSource": { - "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" - }, "System.Diagnostics.EventLog": { "type": "Transitive", "resolved": "6.0.0", @@ -632,11 +621,11 @@ }, "System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ewYQGK0kzOpfiYCF0P0nqPAnKqGhqiXAWDFeMtQtwJyERA2s7nLx7KEALwDvIFjZvX6677IsPREoLIU9oBOQvA==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "System.IO.Pipelines": { @@ -664,11 +653,8 @@ }, "System.Text.Encoding.CodePages": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "6.0.1", + "contentHash": "OV04vEWTSDXzaAJCjylOIdjB7Z7QTYQcz4/ATZSiG8PLkZLsbtaADj0Ydj4FdFnqq4PAwEA7SuILE+6ka4cn6A==" }, "System.Text.Encodings.Web": { "type": "Transitive", @@ -677,11 +663,8 @@ }, "System.Text.Json": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", - "dependencies": { - "System.Text.Encodings.Web": "8.0.0" - } + "resolved": "8.0.5", + "contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==" }, "System.Threading.Channels": { "type": "Transitive", @@ -690,15 +673,15 @@ }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ViPtOy4lAlmWq9GDEwiE5C9XSgDGHUWMRvVvruI38pbikUXkgu7xnCVW7PYdQOjS+iWWcQHt+U7oyPedfnWSHg==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ii6Xgru3ozRaLezwE/lKAPTdE3ES+S3P3ul+QrMxIP10GN+LF0JAi4aWqb8lxzEAwBMSAeK/QipEpVt4KYlTOg==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "xunit.abstractions": { @@ -744,21 +727,21 @@ "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "HL7-dotnetcore": "[2.36.0, )", + "HL7-dotnetcore": "[2.39.1, )", "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.6, )", + "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.14, )", "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Messaging.RabbitMQ": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )", - "fo-dicom": "[5.1.2, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Messaging.RabbitMQ": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )", + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )", - "System.IO.Abstractions": "[21.0.2, )" + "Ardalis.GuardClauses": "[4.6.0, )", + "System.IO.Abstractions": "[21.3.1, )" } }, "monai.deploy.informaticsgateway.configuration": { @@ -773,21 +756,21 @@ "dependencies": { "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", - "NLog": "[5.3.2, )" + "NLog": "[5.4.0, )" } }, "monai.deploy.informaticsgateway.database.entityframework": { "type": "Project", "dependencies": { - "Microsoft.EntityFrameworkCore": "[8.0.6, )", - "Microsoft.EntityFrameworkCore.Design": "[8.0.6, )", - "Microsoft.EntityFrameworkCore.Sqlite": "[8.0.6, )", - "Microsoft.Extensions.Configuration.FileExtensions": "[8.0.0, )", - "Microsoft.Extensions.Configuration.Json": "[8.0.0, )", + "Microsoft.EntityFrameworkCore": "[8.0.14, )", + "Microsoft.EntityFrameworkCore.Design": "[8.0.14, )", + "Microsoft.EntityFrameworkCore.Sqlite": "[8.0.14, )", + "Microsoft.Extensions.Configuration.FileExtensions": "[8.0.1, )", + "Microsoft.Extensions.Configuration.Json": "[8.0.1, )", "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", "Monai.Deploy.InformaticsGateway.Database.Api": "[1.0.0, )", - "Polly": "[8.4.0, )" + "Polly": "[8.5.2, )" } } } diff --git a/src/Database/EntityFramework/packages.lock.json b/src/Database/EntityFramework/packages.lock.json index 8a98af9e..35da89a5 100644 --- a/src/Database/EntityFramework/packages.lock.json +++ b/src/Database/EntityFramework/packages.lock.json @@ -4,44 +4,44 @@ "net8.0": { "Microsoft.EntityFrameworkCore": { "type": "Direct", - "requested": "[8.0.6, )", - "resolved": "8.0.6", - "contentHash": "Ms5e5QuBAjVIuQsGumeLvkgMiOpnj6wxPvwBIoe1NfTkseWK4NZYztnhgDlpkCPkrUmJEXLv69kl349Ours30Q==", + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "HNn+NPKCm7rR7ij7IRCCbuImaMulFJGloyIbMwi3Ews77RsthM8gxpTZciFLgRYPsBtszKpdIClEwnWmP0vjUg==", "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "8.0.6", - "Microsoft.EntityFrameworkCore.Analyzers": "8.0.6", - "Microsoft.Extensions.Caching.Memory": "8.0.0", - "Microsoft.Extensions.Logging": "8.0.0" + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.14", + "Microsoft.EntityFrameworkCore.Analyzers": "8.0.14", + "Microsoft.Extensions.Caching.Memory": "8.0.1", + "Microsoft.Extensions.Logging": "8.0.1" } }, "Microsoft.EntityFrameworkCore.Design": { "type": "Direct", - "requested": "[8.0.6, )", - "resolved": "8.0.6", - "contentHash": "4OT+mH+8EB4Kfn1ENpDx2Ssx459j200gvdhDOKq5lkHmHzkRpmEDKS5GfqaLZvBLJKWu1FVGQ7Wnczcjb0hX4g==", + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "ncCvbJYGXK7eSOVqfQNXLaxMWKGaKSYX1VJZjyJXg3IxxmF50B8p/isprgrVLR+SlQwTG1lmhPAPn0dOvCqlrw==", "dependencies": { "Humanizer.Core": "2.14.1", "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0", - "Microsoft.EntityFrameworkCore.Relational": "8.0.6", - "Microsoft.Extensions.DependencyModel": "8.0.0", + "Microsoft.EntityFrameworkCore.Relational": "8.0.14", + "Microsoft.Extensions.DependencyModel": "8.0.2", "Mono.TextTemplating": "2.2.1" } }, "Microsoft.EntityFrameworkCore.Sqlite": { "type": "Direct", - "requested": "[8.0.6, )", - "resolved": "8.0.6", - "contentHash": "nC4cZN4zReTb22qd9WDU0eDmlXvkyf2g2pqQ3VIHJbkpJcdWSY/PDgwGpbpShsVcAjXbkjGiUcv9aGwa61xQPw==", + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "iqrhkOirZ9mm3Yu+ut9698VDn6WSykfr9NMECIe6gObUZLxAsg28f1JmIjx2n4pKFm5Uz5sYJ3k4AUnrJbgUag==", "dependencies": { - "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.6", + "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.14", "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" } }, "Microsoft.Extensions.Configuration.FileExtensions": { "type": "Direct", - "requested": "[8.0.0, )", - "resolved": "8.0.0", - "contentHash": "McP+Lz/EKwvtCv48z0YImw+L1gi1gy5rHhNaNIY2CrjloV+XY8gydT8DjMR6zWeL13AFK+DioVpppwAuO1Gi1w==", + "requested": "[8.0.1, )", + "resolved": "8.0.1", + "contentHash": "EJzSNO9oaAXnTdtdNO6npPRsIIeZCBSNmdQ091VDO7fBiOtJAAeEq6dtrVXIi3ZyjC5XRSAtVvF8SzcneRHqKQ==", "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", @@ -52,71 +52,70 @@ }, "Microsoft.Extensions.Configuration.Json": { "type": "Direct", - "requested": "[8.0.0, )", - "resolved": "8.0.0", - "contentHash": "C2wqUoh9OmRL1akaCcKSTmRU8z0kckfImG7zLNI8uyi47Lp+zd5LWAD17waPQEqCz3ioWOCrFUo+JJuoeZLOBw==", + "requested": "[8.0.1, )", + "resolved": "8.0.1", + "contentHash": "L89DLNuimOghjV3tLx0ArFDwVEJD6+uGB3BMCMX01kaLzXkaXHb2021xOMl2QOxUxbdePKUZsUY7n2UUkycjRg==", "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "System.Text.Json": "8.0.0" + "Microsoft.Extensions.Configuration.FileExtensions": "8.0.1", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0" } }, "Polly": { "type": "Direct", - "requested": "[8.4.0, )", - "resolved": "8.4.0", - "contentHash": "z2EeUutuy49jBQyZ5s2FUuTCGx3GCzJ0cJ2HbjWwks94TsC6bKTtAHKBkMZOa/DyYRl5yIX7MshvMTWl1J6RNg==", + "requested": "[8.5.2, )", + "resolved": "8.5.2", + "contentHash": "vbXsGgkG86nG+TOwY+SmtrGrRHmHH0DQaxtILx//d3Dz/ocJ8izSNYzdvU2gEtWa/LDD8zJLvD3HdjEkdlvkhg==", "dependencies": { - "Polly.Core": "8.4.0" + "Polly.Core": "8.5.2" } }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.304.15", - "contentHash": "XLfl4/wuTDWXH73FjGUx5P6Jf6FNLTlyVwWvQ0b/WyBOtZVJxPlCKUTYDn06VdqcLGg3uPP6FKJqnplKsnMHMw==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.105", - "contentHash": "axqpqdA4QZvHzEdGDLk5/IpPQsUTIcnVDulz4uyE+UEeYAHpFcp/BNQxmmIU4Gdv0G5KwQWKiaUaZPuLVN0Esg==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.304.15, 4.0.0)" + "AWSSDK.Core": "[3.7.402.25, 4.0.0)" } }, "CommunityToolkit.HighPerformance": { "type": "Transitive", - "resolved": "8.2.2", - "contentHash": "+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==" + "resolved": "8.3.2", + "contentHash": "1Os81ua0FmIOtiSgOk5C1KBraQ3SDfxs/7BG4qDagm48nGplr//lAVqLH9I2TLDVqRFdhqTUaEITFA5Ho/Ovkw==" }, "fo-dicom": { "type": "Transitive", - "resolved": "5.1.2", - "contentHash": "2lM76Vq+GRdwyY3BQiUJ+V6yxdFiOG4ysLJC7qNTxLsq/1pr5ZTTXiIzWQa+uJ0MuKnzzFogV5+meDflsyjs2g==", + "resolved": "5.2.1", + "contentHash": "Oa6raonOj/Xm+a1j3O89OlUXJIF55jLAKjCuXKINYJMJ+hJ/9Al1YOxPs1hut8DBKvHbgYtgdRFtqGNS+Qt6Uw==", "dependencies": { - "CommunityToolkit.HighPerformance": "8.2.2", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "CommunityToolkit.HighPerformance": "8.3.2", + "Microsoft.Bcl.AsyncInterfaces": "8.0.0", "Microsoft.Bcl.HashCode": "1.1.1", "Microsoft.Extensions.DependencyInjection": "6.0.1", "Microsoft.Extensions.Logging": "6.0.0", "Microsoft.Extensions.Options": "6.0.0", "System.Buffers": "4.5.1", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "6.0.9", + "System.Text.Encoding.CodePages": "6.0.1", + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.5", "System.Threading.Channels": "6.0.0" } }, "HL7-dotnetcore": { "type": "Transitive", - "resolved": "2.36.0", - "contentHash": "N1HLMeIqYuY+4O69ItgZJoDBnnpNkK5N2pClceTJ2nFJxsP48iCsA4iz3tm43Yszi4r/vaThoc3UoLBfGP3vKw==" + "resolved": "2.39.1", + "contentHash": "xbgykLlAr644SfYY2oxnpYYto+JFYLuUHt00hRTlhpB+5DiFC2oVSVRA+8yyq/lmkjTNidtTbN9nyK0ft4DSfw==" }, "Humanizer.Core": { "type": "Transitive", @@ -130,8 +129,8 @@ }, "Microsoft.Bcl.AsyncInterfaces": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==" + "resolved": "8.0.0", + "contentHash": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==" }, "Microsoft.Bcl.HashCode": { "type": "Transitive", @@ -189,39 +188,39 @@ }, "Microsoft.Data.Sqlite.Core": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "umhZ0ZF2RI81rGFTnYmCxI+Euj4Aqe/6Y4+8CxN9OVJNGDNIqB5laJ3wxQTU8zXCcm2k9F7FL+/6RVoOT4z1Fw==", + "resolved": "8.0.14", + "contentHash": "MT/9fCazlL4T10BwCQCxvUXOmtU4rR1qDl2mpePFhmuXONafUjXUf8FH94IR79ISxrGVHxsOWvwGzgKi6RSE/g==", "dependencies": { "SQLitePCLRaw.core": "2.1.6" } }, "Microsoft.EntityFrameworkCore.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "X7wSSBNFRuN8j8M9HDYG7rPpEeyhY+PdJZR9rftmgvsZH0eK5+bZ3b3As8iO4rLEpjsBzDnrgSIY6q2F3HQatw==" + "resolved": "8.0.14", + "contentHash": "Om8/jdWyx9eKFkA1YEgxk13KjGIzA8teLgG7iNFunsI2+MT6UT54Eb4t6oe4NQlIaACj5voUe6szVAQe9GKwDA==" }, "Microsoft.EntityFrameworkCore.Analyzers": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "fDNtuQ4lAaPaCOlsrwUck/GvnF4QLeDpMmE1L5QtxZpMSmWfnL2/vk8sDL9OVTWcfprooI9V5MNpIx3/Tq5ehg==" + "resolved": "8.0.14", + "contentHash": "lzNb3s4t5JDMHGoUFuX/f977dFythvmzGFJxvjlhExdiATPKQfquo2NM0uX8Kelfq04jRljpdbRzcsSsK1q9Tw==" }, "Microsoft.EntityFrameworkCore.Relational": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "chhfmLusCGLGvNYtvMji6KGQlduPDnJsStG/LjS8qJhFWJDDzTZpSr2LHowewcxMrMo/Axc6Jwe+WwSi/vlkTg==", + "resolved": "8.0.14", + "contentHash": "cPEeIk9nFO3+hxj9tp5AvTFdcTZkVPJCOFUiagbf37KhPGtiG0ZWpl15xOzLYTDAYjF5kxH/jcuDYGlLACJEmA==", "dependencies": { - "Microsoft.EntityFrameworkCore": "8.0.6", + "Microsoft.EntityFrameworkCore": "8.0.14", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" } }, "Microsoft.EntityFrameworkCore.Sqlite.Core": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "87xfPtqSouxWWdynYZv/rubd0rOUeiN9+XeoMWQzpZm/5svH1TuvzFODGIY0zKuXS18NiOFyHl9N6///eaEs/Q==", + "resolved": "8.0.14", + "contentHash": "TcbHy/SdKTcrxlgx14uicVMqrBTu3SP3STGicR+JzYG4I3mVtsBgqtArt6mmUtA7UZj7sogXJ6EFpSyNsJU8Zg==", "dependencies": { - "Microsoft.Data.Sqlite.Core": "8.0.6", - "Microsoft.EntityFrameworkCore.Relational": "8.0.6", - "Microsoft.Extensions.DependencyModel": "8.0.0" + "Microsoft.Data.Sqlite.Core": "8.0.14", + "Microsoft.EntityFrameworkCore.Relational": "8.0.14", + "Microsoft.Extensions.DependencyModel": "8.0.2" } }, "Microsoft.Extensions.Caching.Abstractions": { @@ -234,13 +233,13 @@ }, "Microsoft.Extensions.Caching.Memory": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==", + "resolved": "8.0.1", + "contentHash": "HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==", "dependencies": { "Microsoft.Extensions.Caching.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", "Microsoft.Extensions.Primitives": "8.0.0" } }, @@ -263,51 +262,46 @@ }, "Microsoft.Extensions.DependencyInjection": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "resolved": "8.0.1", + "contentHash": "BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.DependencyInjection.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==" + "resolved": "8.0.2", + "contentHash": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==" }, "Microsoft.Extensions.DependencyModel": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==", - "dependencies": { - "System.Text.Encodings.Web": "8.0.0", - "System.Text.Json": "8.0.0" - } + "resolved": "8.0.2", + "contentHash": "mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==" }, "Microsoft.Extensions.Diagnostics.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==", + "resolved": "8.0.1", + "contentHash": "elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", - "System.Diagnostics.DiagnosticSource": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "Wtylr3ucMUQ+/6x5ngRtBQ0D0TVloWE3hbwUEhwE16OZHB66uqAEVnEvcAXxW2IFuVAuEHMXX5GebfkbSZQSTw==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.6", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.1", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.14", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.3", "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "GiHK4B5Xsf5YzL73kup2zJoJfDx5RJYBd0LZN6dx8XyOSoZnh7NNrMP+vTLxAJVp//JxHk0KIhBnW9YuFrSVig==" + "resolved": "8.0.14", + "contentHash": "se5sdveMiA3PUOWchOZXY/sGA50MrJ/Mg/G6CdQBtyA4MLySNRilVCi23YT90RAwqvI2uQEk5+buxYdpAfuwpA==" }, "Microsoft.Extensions.FileProviders.Abstractions": { "type": "Transitive", @@ -334,32 +328,32 @@ }, "Microsoft.Extensions.Hosting.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "resolved": "8.0.1", + "contentHash": "nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "resolved": "8.0.1", + "contentHash": "4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==", "dependencies": { - "Microsoft.Extensions.DependencyInjection": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0" + "Microsoft.Extensions.DependencyInjection": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Logging.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Options": { @@ -378,42 +372,42 @@ }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "jchWPuXJC4N9g1jZ7ZPSfbDSBfMmIgFw5w9VqAT5A9USdE/10IMT83wL48KkTbR7eHdphghe06iGKk7IPhYweA==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "21.0.2" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Messaging.RabbitMQ": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "/tj7IO/SHYXNRfxh7iIMms9TurhtCIozZp5lDFvd/WkPgKWZyyyZH8wxkNb9r7jIh/vXkrGJcPCxR30uoET+7g==", + "resolved": "2.0.4", + "contentHash": "tmEERdnqJq1STVGx30+wVyj7AtvtT8K2j/59lSiZ7k58ZdRku601Gs6k1KZ/sfGeobCjaB4gI7GROxK+lN6gbg==", "dependencies": { - "Monai.Deploy.Messaging": "2.0.3", - "Polly": "8.4.0", + "Monai.Deploy.Messaging": "2.0.4", + "Polly": "8.5.2", "RabbitMQ.Client": "6.8.1" } }, "Monai.Deploy.Storage": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "ceVSHBPDMxWV7C6TLBoJmJt3X0RQmdPnm+9NU17Zs0TGE58QvSEHn4GJODtK9+ncgUJICjBhPFcNHV40ybEepQ==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.105", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", - "Monai.Deploy.Storage.S3Policy": "1.0.1", - "System.IO.Abstractions": "21.0.2" + "AWSSDK.SecurityToken": "3.7.401.68", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", + "Monai.Deploy.Storage.S3Policy": "1.0.2", + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage.S3Policy": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "mgLlLRphh+vrVKen72jfEzBcoOhAzCjavGMUzWIjIFh5avmb2RJNbQERLSISOCjWnqPscc/xSPKFUUpLMOLdYw==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, @@ -432,13 +426,13 @@ }, "NLog": { "type": "Transitive", - "resolved": "5.3.2", - "contentHash": "cQRQZuDMjSyMe9EQBnI9v55YAMMz8GAfFd6fFJ6tc/kXnG7Hze8p1I8MgvWSBG6E36wA8vSxRrlm8uSIG+SENg==" + "resolved": "5.4.0", + "contentHash": "LwMcGSW3soF3/SL68rlJN3Eh3ktrAPycC3zZR/07OYBPraZUu0bygEC7kIN10lUQgMXT4s84Fi1chglGdGrQEg==" }, "Polly.Core": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "3AZxuP//pxOeBo9tQs7/tz4Z5TTbu4BYfjpaXZD0JYKJo98ngN9TMUz1nybh4k0ykWkMBpGZALV/AmVIE3ew7A==" + "resolved": "8.5.2", + "contentHash": "1MJKdxv4zwDmiWvYvVN24DsrWUfgQ4F83voH8bhbtLMdPuGy8CfTUzsgQhvyrl1a7hrM6f/ydwLVdVUI0xooUw==" }, "RabbitMQ.Client": { "type": "Transitive", @@ -545,18 +539,13 @@ "System.Composition.Runtime": "6.0.0" } }, - "System.Diagnostics.DiagnosticSource": { - "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" - }, "System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ewYQGK0kzOpfiYCF0P0nqPAnKqGhqiXAWDFeMtQtwJyERA2s7nLx7KEALwDvIFjZvX6677IsPREoLIU9oBOQvA==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "System.IO.Pipelines": { @@ -584,11 +573,8 @@ }, "System.Text.Encoding.CodePages": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "6.0.1", + "contentHash": "OV04vEWTSDXzaAJCjylOIdjB7Z7QTYQcz4/ATZSiG8PLkZLsbtaADj0Ydj4FdFnqq4PAwEA7SuILE+6ka4cn6A==" }, "System.Text.Encodings.Web": { "type": "Transitive", @@ -597,11 +583,8 @@ }, "System.Text.Json": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", - "dependencies": { - "System.Text.Encodings.Web": "8.0.0" - } + "resolved": "8.0.5", + "contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==" }, "System.Threading.Channels": { "type": "Transitive", @@ -610,35 +593,35 @@ }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ViPtOy4lAlmWq9GDEwiE5C9XSgDGHUWMRvVvruI38pbikUXkgu7xnCVW7PYdQOjS+iWWcQHt+U7oyPedfnWSHg==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ii6Xgru3ozRaLezwE/lKAPTdE3ES+S3P3ul+QrMxIP10GN+LF0JAi4aWqb8lxzEAwBMSAeK/QipEpVt4KYlTOg==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "HL7-dotnetcore": "[2.36.0, )", + "HL7-dotnetcore": "[2.39.1, )", "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.6, )", + "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.14, )", "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Messaging.RabbitMQ": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )", - "fo-dicom": "[5.1.2, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Messaging.RabbitMQ": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )", + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )", - "System.IO.Abstractions": "[21.0.2, )" + "Ardalis.GuardClauses": "[4.6.0, )", + "System.IO.Abstractions": "[21.3.1, )" } }, "monai.deploy.informaticsgateway.configuration": { @@ -653,7 +636,7 @@ "dependencies": { "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", - "NLog": "[5.3.2, )" + "NLog": "[5.4.0, )" } } } diff --git a/src/Database/Monai.Deploy.InformaticsGateway.Database.csproj b/src/Database/Monai.Deploy.InformaticsGateway.Database.csproj index 10ae840c..6b334428 100755 --- a/src/Database/Monai.Deploy.InformaticsGateway.Database.csproj +++ b/src/Database/Monai.Deploy.InformaticsGateway.Database.csproj @@ -57,9 +57,9 @@ - - - + + + \ No newline at end of file diff --git a/src/Database/MongoDB/Integration.Test/Monai.Deploy.InformaticsGateway.Database.MongoDB.Integration.Test.csproj b/src/Database/MongoDB/Integration.Test/Monai.Deploy.InformaticsGateway.Database.MongoDB.Integration.Test.csproj index 92996a1e..548ef0b9 100644 --- a/src/Database/MongoDB/Integration.Test/Monai.Deploy.InformaticsGateway.Database.MongoDB.Integration.Test.csproj +++ b/src/Database/MongoDB/Integration.Test/Monai.Deploy.InformaticsGateway.Database.MongoDB.Integration.Test.csproj @@ -23,15 +23,15 @@ true - - + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/src/Database/MongoDB/Integration.Test/packages.lock.json b/src/Database/MongoDB/Integration.Test/packages.lock.json index 71c398c6..6dad9891 100644 --- a/src/Database/MongoDB/Integration.Test/packages.lock.json +++ b/src/Database/MongoDB/Integration.Test/packages.lock.json @@ -4,27 +4,27 @@ "net8.0": { "coverlet.collector": { "type": "Direct", - "requested": "[6.0.2, )", - "resolved": "6.0.2", - "contentHash": "bJShQ6uWRTQ100ZeyiMqcFlhP7WJ+bCuabUs885dJiBEzMsJMSFr7BOyeCw4rgvQokteGi5rKQTlkhfQPUXg2A==" + "requested": "[6.0.4, )", + "resolved": "6.0.4", + "contentHash": "lkhqpF8Pu2Y7IiN7OntbsTtdbpR1syMsm2F3IgX6ootA4ffRqWL5jF7XipHuZQTdVuWG/gVAAcf8mjk8Tz0xPg==" }, "FluentAssertions": { "type": "Direct", - "requested": "[6.12.0, )", - "resolved": "6.12.0", - "contentHash": "ZXhHT2YwP9lajrwSKbLlFqsmCCvFJMoRSK9t7sImfnCyd0OB3MhgxdoMcVqxbq1iyxD6mD2fiackWmBb7ayiXQ==", + "requested": "[6.12.2, )", + "resolved": "6.12.2", + "contentHash": "8YE+xJmT8wgzEpFuzJ4S62oFhEL/AKouMz1RWPEMEUhy9H11aRQlGIWcHurH5BEy7tbF6gb0CJrs0wOw/AtDcQ==", "dependencies": { "System.Configuration.ConfigurationManager": "4.4.0" } }, "Microsoft.NET.Test.Sdk": { "type": "Direct", - "requested": "[17.10.0, )", - "resolved": "17.10.0", - "contentHash": "0/2HeACkaHEYU3wc83YlcD2Fi4LMtECJjqrtvw0lPi9DCEa35zSPt1j4fuvM8NagjDqJuh1Ja35WcRtn1Um6/A==", + "requested": "[17.13.0, )", + "resolved": "17.13.0", + "contentHash": "W19wCPizaIC9Zh47w8wWI/yxuqR7/dtABwOrc8r2jX/8mUNxM2vw4fXDh+DJTeogxV+KzKwg5jNNGQVwf3LXyA==", "dependencies": { - "Microsoft.CodeCoverage": "17.10.0", - "Microsoft.TestPlatform.TestHost": "17.10.0" + "Microsoft.CodeCoverage": "17.13.0", + "Microsoft.TestPlatform.TestHost": "17.13.0" } }, "Moq": { @@ -55,20 +55,20 @@ }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.304.15", - "contentHash": "XLfl4/wuTDWXH73FjGUx5P6Jf6FNLTlyVwWvQ0b/WyBOtZVJxPlCKUTYDn06VdqcLGg3uPP6FKJqnplKsnMHMw==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.105", - "contentHash": "axqpqdA4QZvHzEdGDLk5/IpPQsUTIcnVDulz4uyE+UEeYAHpFcp/BNQxmmIU4Gdv0G5KwQWKiaUaZPuLVN0Esg==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.304.15, 4.0.0)" + "AWSSDK.Core": "[3.7.402.25, 4.0.0)" } }, "Castle.Core": { @@ -81,8 +81,8 @@ }, "CommunityToolkit.HighPerformance": { "type": "Transitive", - "resolved": "8.2.2", - "contentHash": "+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==" + "resolved": "8.3.2", + "contentHash": "1Os81ua0FmIOtiSgOk5C1KBraQ3SDfxs/7BG4qDagm48nGplr//lAVqLH9I2TLDVqRFdhqTUaEITFA5Ho/Ovkw==" }, "DnsClient": { "type": "Transitive", @@ -94,26 +94,26 @@ }, "fo-dicom": { "type": "Transitive", - "resolved": "5.1.2", - "contentHash": "2lM76Vq+GRdwyY3BQiUJ+V6yxdFiOG4ysLJC7qNTxLsq/1pr5ZTTXiIzWQa+uJ0MuKnzzFogV5+meDflsyjs2g==", + "resolved": "5.2.1", + "contentHash": "Oa6raonOj/Xm+a1j3O89OlUXJIF55jLAKjCuXKINYJMJ+hJ/9Al1YOxPs1hut8DBKvHbgYtgdRFtqGNS+Qt6Uw==", "dependencies": { - "CommunityToolkit.HighPerformance": "8.2.2", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "CommunityToolkit.HighPerformance": "8.3.2", + "Microsoft.Bcl.AsyncInterfaces": "8.0.0", "Microsoft.Bcl.HashCode": "1.1.1", "Microsoft.Extensions.DependencyInjection": "6.0.1", "Microsoft.Extensions.Logging": "6.0.0", "Microsoft.Extensions.Options": "6.0.0", "System.Buffers": "4.5.1", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "6.0.9", + "System.Text.Encoding.CodePages": "6.0.1", + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.5", "System.Threading.Channels": "6.0.0" } }, "HL7-dotnetcore": { "type": "Transitive", - "resolved": "2.36.0", - "contentHash": "N1HLMeIqYuY+4O69ItgZJoDBnnpNkK5N2pClceTJ2nFJxsP48iCsA4iz3tm43Yszi4r/vaThoc3UoLBfGP3vKw==" + "resolved": "2.39.1", + "contentHash": "xbgykLlAr644SfYY2oxnpYYto+JFYLuUHt00hRTlhpB+5DiFC2oVSVRA+8yyq/lmkjTNidtTbN9nyK0ft4DSfw==" }, "Macross.Json.Extensions": { "type": "Transitive", @@ -122,8 +122,8 @@ }, "Microsoft.Bcl.AsyncInterfaces": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==" + "resolved": "8.0.0", + "contentHash": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==" }, "Microsoft.Bcl.HashCode": { "type": "Transitive", @@ -132,13 +132,13 @@ }, "Microsoft.CodeCoverage": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "yC7oSlnR54XO5kOuHlVOKtxomNNN1BWXX8lK1G2jaPXT9sUok7kCOoA4Pgs0qyFaCtMrNsprztYMeoEGqCm4uA==" + "resolved": "17.13.0", + "contentHash": "9LIUy0y+DvUmEPtbRDw6Bay3rzwqFV8P4efTrK4CZhQle3M/QwLPjISghfcolmEGAPWxuJi6m98ZEfk4VR4Lfg==" }, "Microsoft.EntityFrameworkCore.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "X7wSSBNFRuN8j8M9HDYG7rPpEeyhY+PdJZR9rftmgvsZH0eK5+bZ3b3As8iO4rLEpjsBzDnrgSIY6q2F3HQatw==" + "resolved": "8.0.14", + "contentHash": "Om8/jdWyx9eKFkA1YEgxk13KjGIzA8teLgG7iNFunsI2+MT6UT54Eb4t6oe4NQlIaACj5voUe6szVAQe9GKwDA==" }, "Microsoft.Extensions.Configuration.Abstractions": { "type": "Transitive", @@ -159,34 +159,33 @@ }, "Microsoft.Extensions.DependencyInjection.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==" + "resolved": "8.0.2", + "contentHash": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==" }, "Microsoft.Extensions.Diagnostics.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==", + "resolved": "8.0.1", + "contentHash": "elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", - "System.Diagnostics.DiagnosticSource": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "Wtylr3ucMUQ+/6x5ngRtBQ0D0TVloWE3hbwUEhwE16OZHB66uqAEVnEvcAXxW2IFuVAuEHMXX5GebfkbSZQSTw==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.6", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.1", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.14", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.3", "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "GiHK4B5Xsf5YzL73kup2zJoJfDx5RJYBd0LZN6dx8XyOSoZnh7NNrMP+vTLxAJVp//JxHk0KIhBnW9YuFrSVig==" + "resolved": "8.0.14", + "contentHash": "se5sdveMiA3PUOWchOZXY/sGA50MrJ/Mg/G6CdQBtyA4MLySNRilVCi23YT90RAwqvI2uQEk5+buxYdpAfuwpA==" }, "Microsoft.Extensions.FileProviders.Abstractions": { "type": "Transitive", @@ -198,14 +197,14 @@ }, "Microsoft.Extensions.Hosting.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "resolved": "8.0.1", + "contentHash": "nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging": { @@ -222,10 +221,10 @@ }, "Microsoft.Extensions.Logging.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Options": { @@ -249,18 +248,18 @@ }, "Microsoft.TestPlatform.ObjectModel": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "KkwhjQevuDj0aBRoPLY6OLAhGqbPUEBuKLbaCs0kUVw29qiOYncdORd4mLVJbn9vGZ7/iFGQ/+AoJl0Tu5Umdg==", + "resolved": "17.13.0", + "contentHash": "bt0E0Dx+iqW97o4A59RCmUmz/5NarJ7LRL+jXbSHod72ibL5XdNm1Ke+UO5tFhBG4VwHLcSjqq9BUSblGNWamw==", "dependencies": { "System.Reflection.Metadata": "1.6.0" } }, "Microsoft.TestPlatform.TestHost": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "LWpMdfqhHvcUkeMCvNYJO8QlPLlYz9XPPb+ZbaXIKhdmjAV0wqTSrTiW5FLaf7RRZT50AQADDOYMOe0HxDxNgA==", + "resolved": "17.13.0", + "contentHash": "9GGw08Dc3AXspjekdyTdZ/wYWFlxbgcF0s7BKxzVX+hzAwpifDOdxM+ceVaaJSQOwqt3jtuNlHn3XTpKUS9x9Q==", "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "17.10.0", + "Microsoft.TestPlatform.ObjectModel": "17.13.0", "Newtonsoft.Json": "13.0.1" } }, @@ -275,49 +274,49 @@ }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "jchWPuXJC4N9g1jZ7ZPSfbDSBfMmIgFw5w9VqAT5A9USdE/10IMT83wL48KkTbR7eHdphghe06iGKk7IPhYweA==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "21.0.2" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Messaging.RabbitMQ": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "/tj7IO/SHYXNRfxh7iIMms9TurhtCIozZp5lDFvd/WkPgKWZyyyZH8wxkNb9r7jIh/vXkrGJcPCxR30uoET+7g==", + "resolved": "2.0.4", + "contentHash": "tmEERdnqJq1STVGx30+wVyj7AtvtT8K2j/59lSiZ7k58ZdRku601Gs6k1KZ/sfGeobCjaB4gI7GROxK+lN6gbg==", "dependencies": { - "Monai.Deploy.Messaging": "2.0.3", - "Polly": "8.4.0", + "Monai.Deploy.Messaging": "2.0.4", + "Polly": "8.5.2", "RabbitMQ.Client": "6.8.1" } }, "Monai.Deploy.Storage": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "ceVSHBPDMxWV7C6TLBoJmJt3X0RQmdPnm+9NU17Zs0TGE58QvSEHn4GJODtK9+ncgUJICjBhPFcNHV40ybEepQ==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.105", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", - "Monai.Deploy.Storage.S3Policy": "1.0.1", - "System.IO.Abstractions": "21.0.2" + "AWSSDK.SecurityToken": "3.7.401.68", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", + "Monai.Deploy.Storage.S3Policy": "1.0.2", + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage.S3Policy": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "mgLlLRphh+vrVKen72jfEzBcoOhAzCjavGMUzWIjIFh5avmb2RJNbQERLSISOCjWnqPscc/xSPKFUUpLMOLdYw==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, "MongoDB.Bson": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "xQx/qtC2nu9oGiyNqAwfiDpUMweLi0nID677cyKykpwmj5AVMrnd//UwmcmuX95178DeY6rf7cjmA613TQXPiA==", + "resolved": "2.30.0", + "contentHash": "Gg0TQUT3IEntcqdug5a9P6d8iwL5CqOpQjVBCq1hxTbkjxdGdY6a2CPv7II44AO9GYUnORYsS6dDME2b7aqYyg==", "dependencies": { "System.Memory": "4.5.5", "System.Runtime.CompilerServices.Unsafe": "5.0.0" @@ -325,25 +324,25 @@ }, "MongoDB.Driver": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "dMqnZTV6MuvoEI4yFtSvKJdAoN6NeyAEvG8aoxnrLIVd7bR84QxLgpsM1nhK17qkOcIx/IrpMIfrvp5iMnYGBg==", + "resolved": "2.30.0", + "contentHash": "BCG8cNF0+U3h5f/O9fu3ktrYhoESBDems1w06PExfYrn2KjHBHCBdvBRY1cIbysnZVjQAJjGtFV9XgW+hXt7Hg==", "dependencies": { "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "2.25.0", - "MongoDB.Driver.Core": "2.25.0", - "MongoDB.Libmongocrypt": "1.8.2" + "MongoDB.Bson": "2.30.0", + "MongoDB.Driver.Core": "2.30.0", + "MongoDB.Libmongocrypt": "1.12.0" } }, "MongoDB.Driver.Core": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "oN4nLgO5HQEThTg/zqeoHqaO2+q64DBVb4r7BvhaFb0p0TM9jZKnCKvh1EA8d9E9swIz0CgvMrvL1mPyRCZzag==", + "resolved": "2.30.0", + "contentHash": "oepDgu24lo44SljuHmIQ99x6jHISnMC4tLfzQGniQg39xiMD8nxalm1HM9RDZcuZbbWa4F6YLt2AIhWkny3XWA==", "dependencies": { "AWSSDK.SecurityToken": "3.7.100.14", "DnsClient": "1.6.1", "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "2.25.0", - "MongoDB.Libmongocrypt": "1.8.2", + "MongoDB.Bson": "2.30.0", + "MongoDB.Libmongocrypt": "1.12.0", "SharpCompress": "0.30.1", "Snappier": "1.0.0", "System.Buffers": "4.5.1", @@ -352,8 +351,8 @@ }, "MongoDB.Libmongocrypt": { "type": "Transitive", - "resolved": "1.8.2", - "contentHash": "z/8JCULSHM1+mzkau0ivIkU9kIn8JEFFSkmYTSaMaWMMHt96JjUtMKuXxeGNGSnHZ5290ZPKIlQfjoWFk2sKog==" + "resolved": "1.12.0", + "contentHash": "B1X51jrtNacKvxKoaqWeknYeJfQS5aWf6BmVLT5JZerz3AUXFzv8edPskJYqBc3kLy1J2PWzMqqsnyb9g8FtcA==" }, "Newtonsoft.Json": { "type": "Transitive", @@ -362,21 +361,21 @@ }, "NLog": { "type": "Transitive", - "resolved": "5.3.2", - "contentHash": "cQRQZuDMjSyMe9EQBnI9v55YAMMz8GAfFd6fFJ6tc/kXnG7Hze8p1I8MgvWSBG6E36wA8vSxRrlm8uSIG+SENg==" + "resolved": "5.4.0", + "contentHash": "LwMcGSW3soF3/SL68rlJN3Eh3ktrAPycC3zZR/07OYBPraZUu0bygEC7kIN10lUQgMXT4s84Fi1chglGdGrQEg==" }, "Polly": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "z2EeUutuy49jBQyZ5s2FUuTCGx3GCzJ0cJ2HbjWwks94TsC6bKTtAHKBkMZOa/DyYRl5yIX7MshvMTWl1J6RNg==", + "resolved": "8.5.2", + "contentHash": "vbXsGgkG86nG+TOwY+SmtrGrRHmHH0DQaxtILx//d3Dz/ocJ8izSNYzdvU2gEtWa/LDD8zJLvD3HdjEkdlvkhg==", "dependencies": { - "Polly.Core": "8.4.0" + "Polly.Core": "8.5.2" } }, "Polly.Core": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "3AZxuP//pxOeBo9tQs7/tz4Z5TTbu4BYfjpaXZD0JYKJo98ngN9TMUz1nybh4k0ykWkMBpGZALV/AmVIE3ew7A==" + "resolved": "8.5.2", + "contentHash": "1MJKdxv4zwDmiWvYvVN24DsrWUfgQ4F83voH8bhbtLMdPuGy8CfTUzsgQhvyrl1a7hrM6f/ydwLVdVUI0xooUw==" }, "RabbitMQ.Client": { "type": "Transitive", @@ -412,8 +411,11 @@ }, "System.Diagnostics.DiagnosticSource": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" + "resolved": "6.0.0", + "contentHash": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } }, "System.Diagnostics.EventLog": { "type": "Transitive", @@ -422,11 +424,11 @@ }, "System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ewYQGK0kzOpfiYCF0P0nqPAnKqGhqiXAWDFeMtQtwJyERA2s7nLx7KEALwDvIFjZvX6677IsPREoLIU9oBOQvA==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "System.Memory": { @@ -465,28 +467,18 @@ }, "System.Text.Encoding.CodePages": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "6.0.1", + "contentHash": "OV04vEWTSDXzaAJCjylOIdjB7Z7QTYQcz4/ATZSiG8PLkZLsbtaADj0Ydj4FdFnqq4PAwEA7SuILE+6ka4cn6A==" }, "System.Text.Encodings.Web": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "8.0.0", + "contentHash": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==" }, "System.Text.Json": { "type": "Transitive", - "resolved": "6.0.9", - "contentHash": "2j16oUgtIzl7Xtk7demG0i/v5aU/ZvULcAnJvPb63U3ZhXJ494UYcxuEj5Fs49i3XDrk5kU/8I+6l9zRCw3cJw==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "6.0.0" - } + "resolved": "8.0.5", + "contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==" }, "System.Threading.Channels": { "type": "Transitive", @@ -495,15 +487,15 @@ }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ViPtOy4lAlmWq9GDEwiE5C9XSgDGHUWMRvVvruI38pbikUXkgu7xnCVW7PYdQOjS+iWWcQHt+U7oyPedfnWSHg==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ii6Xgru3ozRaLezwE/lKAPTdE3ES+S3P3ul+QrMxIP10GN+LF0JAi4aWqb8lxzEAwBMSAeK/QipEpVt4KYlTOg==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "xunit.abstractions": { @@ -554,21 +546,21 @@ "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "HL7-dotnetcore": "[2.36.0, )", + "HL7-dotnetcore": "[2.39.1, )", "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.6, )", + "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.14, )", "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Messaging.RabbitMQ": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )", - "fo-dicom": "[5.1.2, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Messaging.RabbitMQ": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )", + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )", - "System.IO.Abstractions": "[21.0.2, )" + "Ardalis.GuardClauses": "[4.6.0, )", + "System.IO.Abstractions": "[21.3.1, )" } }, "monai.deploy.informaticsgateway.configuration": { @@ -583,15 +575,15 @@ "dependencies": { "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", - "NLog": "[5.3.2, )" + "NLog": "[5.4.0, )" } }, "monai.deploy.informaticsgateway.database.mongodb": { "type": "Project", "dependencies": { "Monai.Deploy.InformaticsGateway.Database.Api": "[1.0.0, )", - "MongoDB.Driver": "[2.25.0, )", - "Polly": "[8.4.0, )" + "MongoDB.Driver": "[2.30.0, )", + "Polly": "[8.5.2, )" } } } diff --git a/src/Database/MongoDB/Monai.Deploy.InformaticsGateway.Database.MongoDB.csproj b/src/Database/MongoDB/Monai.Deploy.InformaticsGateway.Database.MongoDB.csproj index 45e92abb..0427e5df 100644 --- a/src/Database/MongoDB/Monai.Deploy.InformaticsGateway.Database.MongoDB.csproj +++ b/src/Database/MongoDB/Monai.Deploy.InformaticsGateway.Database.MongoDB.csproj @@ -36,8 +36,8 @@ - - + + diff --git a/src/Database/MongoDB/packages.lock.json b/src/Database/MongoDB/packages.lock.json index 20e8faa4..7d713023 100644 --- a/src/Database/MongoDB/packages.lock.json +++ b/src/Database/MongoDB/packages.lock.json @@ -4,47 +4,47 @@ "net8.0": { "MongoDB.Driver": { "type": "Direct", - "requested": "[2.25.0, )", - "resolved": "2.25.0", - "contentHash": "dMqnZTV6MuvoEI4yFtSvKJdAoN6NeyAEvG8aoxnrLIVd7bR84QxLgpsM1nhK17qkOcIx/IrpMIfrvp5iMnYGBg==", + "requested": "[2.30.0, )", + "resolved": "2.30.0", + "contentHash": "BCG8cNF0+U3h5f/O9fu3ktrYhoESBDems1w06PExfYrn2KjHBHCBdvBRY1cIbysnZVjQAJjGtFV9XgW+hXt7Hg==", "dependencies": { "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "2.25.0", - "MongoDB.Driver.Core": "2.25.0", - "MongoDB.Libmongocrypt": "1.8.2" + "MongoDB.Bson": "2.30.0", + "MongoDB.Driver.Core": "2.30.0", + "MongoDB.Libmongocrypt": "1.12.0" } }, "Polly": { "type": "Direct", - "requested": "[8.4.0, )", - "resolved": "8.4.0", - "contentHash": "z2EeUutuy49jBQyZ5s2FUuTCGx3GCzJ0cJ2HbjWwks94TsC6bKTtAHKBkMZOa/DyYRl5yIX7MshvMTWl1J6RNg==", + "requested": "[8.5.2, )", + "resolved": "8.5.2", + "contentHash": "vbXsGgkG86nG+TOwY+SmtrGrRHmHH0DQaxtILx//d3Dz/ocJ8izSNYzdvU2gEtWa/LDD8zJLvD3HdjEkdlvkhg==", "dependencies": { - "Polly.Core": "8.4.0" + "Polly.Core": "8.5.2" } }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.304.15", - "contentHash": "XLfl4/wuTDWXH73FjGUx5P6Jf6FNLTlyVwWvQ0b/WyBOtZVJxPlCKUTYDn06VdqcLGg3uPP6FKJqnplKsnMHMw==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.105", - "contentHash": "axqpqdA4QZvHzEdGDLk5/IpPQsUTIcnVDulz4uyE+UEeYAHpFcp/BNQxmmIU4Gdv0G5KwQWKiaUaZPuLVN0Esg==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.304.15, 4.0.0)" + "AWSSDK.Core": "[3.7.402.25, 4.0.0)" } }, "CommunityToolkit.HighPerformance": { "type": "Transitive", - "resolved": "8.2.2", - "contentHash": "+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==" + "resolved": "8.3.2", + "contentHash": "1Os81ua0FmIOtiSgOk5C1KBraQ3SDfxs/7BG4qDagm48nGplr//lAVqLH9I2TLDVqRFdhqTUaEITFA5Ho/Ovkw==" }, "DnsClient": { "type": "Transitive", @@ -56,26 +56,26 @@ }, "fo-dicom": { "type": "Transitive", - "resolved": "5.1.2", - "contentHash": "2lM76Vq+GRdwyY3BQiUJ+V6yxdFiOG4ysLJC7qNTxLsq/1pr5ZTTXiIzWQa+uJ0MuKnzzFogV5+meDflsyjs2g==", + "resolved": "5.2.1", + "contentHash": "Oa6raonOj/Xm+a1j3O89OlUXJIF55jLAKjCuXKINYJMJ+hJ/9Al1YOxPs1hut8DBKvHbgYtgdRFtqGNS+Qt6Uw==", "dependencies": { - "CommunityToolkit.HighPerformance": "8.2.2", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "CommunityToolkit.HighPerformance": "8.3.2", + "Microsoft.Bcl.AsyncInterfaces": "8.0.0", "Microsoft.Bcl.HashCode": "1.1.1", "Microsoft.Extensions.DependencyInjection": "6.0.1", "Microsoft.Extensions.Logging": "6.0.0", "Microsoft.Extensions.Options": "6.0.0", "System.Buffers": "4.5.1", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "6.0.9", + "System.Text.Encoding.CodePages": "6.0.1", + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.5", "System.Threading.Channels": "6.0.0" } }, "HL7-dotnetcore": { "type": "Transitive", - "resolved": "2.36.0", - "contentHash": "N1HLMeIqYuY+4O69ItgZJoDBnnpNkK5N2pClceTJ2nFJxsP48iCsA4iz3tm43Yszi4r/vaThoc3UoLBfGP3vKw==" + "resolved": "2.39.1", + "contentHash": "xbgykLlAr644SfYY2oxnpYYto+JFYLuUHt00hRTlhpB+5DiFC2oVSVRA+8yyq/lmkjTNidtTbN9nyK0ft4DSfw==" }, "Macross.Json.Extensions": { "type": "Transitive", @@ -84,8 +84,8 @@ }, "Microsoft.Bcl.AsyncInterfaces": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==" + "resolved": "8.0.0", + "contentHash": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==" }, "Microsoft.Bcl.HashCode": { "type": "Transitive", @@ -94,8 +94,8 @@ }, "Microsoft.EntityFrameworkCore.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "X7wSSBNFRuN8j8M9HDYG7rPpEeyhY+PdJZR9rftmgvsZH0eK5+bZ3b3As8iO4rLEpjsBzDnrgSIY6q2F3HQatw==" + "resolved": "8.0.14", + "contentHash": "Om8/jdWyx9eKFkA1YEgxk13KjGIzA8teLgG7iNFunsI2+MT6UT54Eb4t6oe4NQlIaACj5voUe6szVAQe9GKwDA==" }, "Microsoft.Extensions.Configuration.Abstractions": { "type": "Transitive", @@ -116,34 +116,33 @@ }, "Microsoft.Extensions.DependencyInjection.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==" + "resolved": "8.0.2", + "contentHash": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==" }, "Microsoft.Extensions.Diagnostics.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==", + "resolved": "8.0.1", + "contentHash": "elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", - "System.Diagnostics.DiagnosticSource": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "Wtylr3ucMUQ+/6x5ngRtBQ0D0TVloWE3hbwUEhwE16OZHB66uqAEVnEvcAXxW2IFuVAuEHMXX5GebfkbSZQSTw==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.6", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.1", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.14", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.3", "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "GiHK4B5Xsf5YzL73kup2zJoJfDx5RJYBd0LZN6dx8XyOSoZnh7NNrMP+vTLxAJVp//JxHk0KIhBnW9YuFrSVig==" + "resolved": "8.0.14", + "contentHash": "se5sdveMiA3PUOWchOZXY/sGA50MrJ/Mg/G6CdQBtyA4MLySNRilVCi23YT90RAwqvI2uQEk5+buxYdpAfuwpA==" }, "Microsoft.Extensions.FileProviders.Abstractions": { "type": "Transitive", @@ -155,14 +154,14 @@ }, "Microsoft.Extensions.Hosting.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "resolved": "8.0.1", + "contentHash": "nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging": { @@ -179,10 +178,10 @@ }, "Microsoft.Extensions.Logging.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Options": { @@ -215,49 +214,49 @@ }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "jchWPuXJC4N9g1jZ7ZPSfbDSBfMmIgFw5w9VqAT5A9USdE/10IMT83wL48KkTbR7eHdphghe06iGKk7IPhYweA==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "21.0.2" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Messaging.RabbitMQ": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "/tj7IO/SHYXNRfxh7iIMms9TurhtCIozZp5lDFvd/WkPgKWZyyyZH8wxkNb9r7jIh/vXkrGJcPCxR30uoET+7g==", + "resolved": "2.0.4", + "contentHash": "tmEERdnqJq1STVGx30+wVyj7AtvtT8K2j/59lSiZ7k58ZdRku601Gs6k1KZ/sfGeobCjaB4gI7GROxK+lN6gbg==", "dependencies": { - "Monai.Deploy.Messaging": "2.0.3", - "Polly": "8.4.0", + "Monai.Deploy.Messaging": "2.0.4", + "Polly": "8.5.2", "RabbitMQ.Client": "6.8.1" } }, "Monai.Deploy.Storage": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "ceVSHBPDMxWV7C6TLBoJmJt3X0RQmdPnm+9NU17Zs0TGE58QvSEHn4GJODtK9+ncgUJICjBhPFcNHV40ybEepQ==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.105", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", - "Monai.Deploy.Storage.S3Policy": "1.0.1", - "System.IO.Abstractions": "21.0.2" + "AWSSDK.SecurityToken": "3.7.401.68", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", + "Monai.Deploy.Storage.S3Policy": "1.0.2", + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage.S3Policy": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "mgLlLRphh+vrVKen72jfEzBcoOhAzCjavGMUzWIjIFh5avmb2RJNbQERLSISOCjWnqPscc/xSPKFUUpLMOLdYw==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, "MongoDB.Bson": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "xQx/qtC2nu9oGiyNqAwfiDpUMweLi0nID677cyKykpwmj5AVMrnd//UwmcmuX95178DeY6rf7cjmA613TQXPiA==", + "resolved": "2.30.0", + "contentHash": "Gg0TQUT3IEntcqdug5a9P6d8iwL5CqOpQjVBCq1hxTbkjxdGdY6a2CPv7II44AO9GYUnORYsS6dDME2b7aqYyg==", "dependencies": { "System.Memory": "4.5.5", "System.Runtime.CompilerServices.Unsafe": "5.0.0" @@ -265,14 +264,14 @@ }, "MongoDB.Driver.Core": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "oN4nLgO5HQEThTg/zqeoHqaO2+q64DBVb4r7BvhaFb0p0TM9jZKnCKvh1EA8d9E9swIz0CgvMrvL1mPyRCZzag==", + "resolved": "2.30.0", + "contentHash": "oepDgu24lo44SljuHmIQ99x6jHISnMC4tLfzQGniQg39xiMD8nxalm1HM9RDZcuZbbWa4F6YLt2AIhWkny3XWA==", "dependencies": { "AWSSDK.SecurityToken": "3.7.100.14", "DnsClient": "1.6.1", "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "2.25.0", - "MongoDB.Libmongocrypt": "1.8.2", + "MongoDB.Bson": "2.30.0", + "MongoDB.Libmongocrypt": "1.12.0", "SharpCompress": "0.30.1", "Snappier": "1.0.0", "System.Buffers": "4.5.1", @@ -281,8 +280,8 @@ }, "MongoDB.Libmongocrypt": { "type": "Transitive", - "resolved": "1.8.2", - "contentHash": "z/8JCULSHM1+mzkau0ivIkU9kIn8JEFFSkmYTSaMaWMMHt96JjUtMKuXxeGNGSnHZ5290ZPKIlQfjoWFk2sKog==" + "resolved": "1.12.0", + "contentHash": "B1X51jrtNacKvxKoaqWeknYeJfQS5aWf6BmVLT5JZerz3AUXFzv8edPskJYqBc3kLy1J2PWzMqqsnyb9g8FtcA==" }, "Newtonsoft.Json": { "type": "Transitive", @@ -291,13 +290,13 @@ }, "NLog": { "type": "Transitive", - "resolved": "5.3.2", - "contentHash": "cQRQZuDMjSyMe9EQBnI9v55YAMMz8GAfFd6fFJ6tc/kXnG7Hze8p1I8MgvWSBG6E36wA8vSxRrlm8uSIG+SENg==" + "resolved": "5.4.0", + "contentHash": "LwMcGSW3soF3/SL68rlJN3Eh3ktrAPycC3zZR/07OYBPraZUu0bygEC7kIN10lUQgMXT4s84Fi1chglGdGrQEg==" }, "Polly.Core": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "3AZxuP//pxOeBo9tQs7/tz4Z5TTbu4BYfjpaXZD0JYKJo98ngN9TMUz1nybh4k0ykWkMBpGZALV/AmVIE3ew7A==" + "resolved": "8.5.2", + "contentHash": "1MJKdxv4zwDmiWvYvVN24DsrWUfgQ4F83voH8bhbtLMdPuGy8CfTUzsgQhvyrl1a7hrM6f/ydwLVdVUI0xooUw==" }, "RabbitMQ.Client": { "type": "Transitive", @@ -325,16 +324,19 @@ }, "System.Diagnostics.DiagnosticSource": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" + "resolved": "6.0.0", + "contentHash": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } }, "System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ewYQGK0kzOpfiYCF0P0nqPAnKqGhqiXAWDFeMtQtwJyERA2s7nLx7KEALwDvIFjZvX6677IsPREoLIU9oBOQvA==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "System.Memory": { @@ -363,28 +365,18 @@ }, "System.Text.Encoding.CodePages": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "6.0.1", + "contentHash": "OV04vEWTSDXzaAJCjylOIdjB7Z7QTYQcz4/ATZSiG8PLkZLsbtaADj0Ydj4FdFnqq4PAwEA7SuILE+6ka4cn6A==" }, "System.Text.Encodings.Web": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "8.0.0", + "contentHash": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==" }, "System.Text.Json": { "type": "Transitive", - "resolved": "6.0.9", - "contentHash": "2j16oUgtIzl7Xtk7demG0i/v5aU/ZvULcAnJvPb63U3ZhXJ494UYcxuEj5Fs49i3XDrk5kU/8I+6l9zRCw3cJw==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "6.0.0" - } + "resolved": "8.0.5", + "contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==" }, "System.Threading.Channels": { "type": "Transitive", @@ -393,15 +385,15 @@ }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ViPtOy4lAlmWq9GDEwiE5C9XSgDGHUWMRvVvruI38pbikUXkgu7xnCVW7PYdQOjS+iWWcQHt+U7oyPedfnWSHg==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ii6Xgru3ozRaLezwE/lKAPTdE3ES+S3P3ul+QrMxIP10GN+LF0JAi4aWqb8lxzEAwBMSAeK/QipEpVt4KYlTOg==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "ZstdSharp.Port": { @@ -412,21 +404,21 @@ "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "HL7-dotnetcore": "[2.36.0, )", + "HL7-dotnetcore": "[2.39.1, )", "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.6, )", + "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.14, )", "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Messaging.RabbitMQ": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )", - "fo-dicom": "[5.1.2, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Messaging.RabbitMQ": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )", + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )", - "System.IO.Abstractions": "[21.0.2, )" + "Ardalis.GuardClauses": "[4.6.0, )", + "System.IO.Abstractions": "[21.3.1, )" } }, "monai.deploy.informaticsgateway.configuration": { @@ -441,7 +433,7 @@ "dependencies": { "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", - "NLog": "[5.3.2, )" + "NLog": "[5.4.0, )" } } } diff --git a/src/Database/packages.lock.json b/src/Database/packages.lock.json index 4bafbe5d..52a2dc2f 100644 --- a/src/Database/packages.lock.json +++ b/src/Database/packages.lock.json @@ -4,32 +4,32 @@ "net8.0": { "AspNetCore.HealthChecks.MongoDb": { "type": "Direct", - "requested": "[8.0.1, )", - "resolved": "8.0.1", - "contentHash": "/IZb7dDJBalyF7eE1/Ql5zFcTqVSAejYIPpzMThzgTj049GhvuYWdMJsMf+Y2+u1vUlG0vy0PKE763XdIuaoFg==", + "requested": "[8.1.0, )", + "resolved": "8.1.0", + "contentHash": "NuVDrj7UXBVniePh6JnuM8ryZRWdOIGOBes3owg2WQV/1NPntpWqX/DYaP6SBduHULUp8XRbwAui8qKQAW4SDA==", "dependencies": { "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", - "MongoDB.Driver": "2.22.0" + "MongoDB.Driver": "2.28.0" } }, "Microsoft.EntityFrameworkCore.Tools": { "type": "Direct", - "requested": "[8.0.6, )", - "resolved": "8.0.6", - "contentHash": "UsrAqShiZQBK2lcZsXoyFPccbiLRd2az1uXe1he2z4r2TUYyxNQFy+eysGCpZg0g62I4jFRJfvXIAmCi4QCUpg==", + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "nWlJaFEvT7HpLkOusyReeQPeHsl5EUIBlI5Pr05SYhkWFQ7KGLmUNdv4j1aAjrO+x42Enqr7fu7r3MXLPQqImg==", "dependencies": { - "Microsoft.EntityFrameworkCore.Design": "8.0.6" + "Microsoft.EntityFrameworkCore.Design": "8.0.14" } }, "Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore": { "type": "Direct", - "requested": "[8.0.6, )", - "resolved": "8.0.6", - "contentHash": "paBCLbj7dMnPSlZ+dkD/Q8KNmI/UZbnCrBVMbX/GZ/6Cs787GSrWawX1UtiCDPfsVGvoaHhQ5oyWHoXrvhb+1g==", + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "4b/wu7E9oNd994GQyehsJkoLAC8BVrRkO6rzWuWTmHm0w0A5m4giPx35BWd7nJ5h0mq2Cfk0ueHlBQo/ICyfJA==", "dependencies": { - "Microsoft.EntityFrameworkCore.Relational": "8.0.6", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.6" + "Microsoft.EntityFrameworkCore.Relational": "8.0.14", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.14" } }, "Microsoft.Extensions.Options.ConfigurationExtensions": { @@ -47,26 +47,26 @@ }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.304.15", - "contentHash": "XLfl4/wuTDWXH73FjGUx5P6Jf6FNLTlyVwWvQ0b/WyBOtZVJxPlCKUTYDn06VdqcLGg3uPP6FKJqnplKsnMHMw==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.105", - "contentHash": "axqpqdA4QZvHzEdGDLk5/IpPQsUTIcnVDulz4uyE+UEeYAHpFcp/BNQxmmIU4Gdv0G5KwQWKiaUaZPuLVN0Esg==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.304.15, 4.0.0)" + "AWSSDK.Core": "[3.7.402.25, 4.0.0)" } }, "CommunityToolkit.HighPerformance": { "type": "Transitive", - "resolved": "8.2.2", - "contentHash": "+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==" + "resolved": "8.3.2", + "contentHash": "1Os81ua0FmIOtiSgOk5C1KBraQ3SDfxs/7BG4qDagm48nGplr//lAVqLH9I2TLDVqRFdhqTUaEITFA5Ho/Ovkw==" }, "DnsClient": { "type": "Transitive", @@ -78,26 +78,26 @@ }, "fo-dicom": { "type": "Transitive", - "resolved": "5.1.2", - "contentHash": "2lM76Vq+GRdwyY3BQiUJ+V6yxdFiOG4ysLJC7qNTxLsq/1pr5ZTTXiIzWQa+uJ0MuKnzzFogV5+meDflsyjs2g==", + "resolved": "5.2.1", + "contentHash": "Oa6raonOj/Xm+a1j3O89OlUXJIF55jLAKjCuXKINYJMJ+hJ/9Al1YOxPs1hut8DBKvHbgYtgdRFtqGNS+Qt6Uw==", "dependencies": { - "CommunityToolkit.HighPerformance": "8.2.2", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "CommunityToolkit.HighPerformance": "8.3.2", + "Microsoft.Bcl.AsyncInterfaces": "8.0.0", "Microsoft.Bcl.HashCode": "1.1.1", "Microsoft.Extensions.DependencyInjection": "6.0.1", "Microsoft.Extensions.Logging": "6.0.0", "Microsoft.Extensions.Options": "6.0.0", "System.Buffers": "4.5.1", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "6.0.9", + "System.Text.Encoding.CodePages": "6.0.1", + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.5", "System.Threading.Channels": "6.0.0" } }, "HL7-dotnetcore": { "type": "Transitive", - "resolved": "2.36.0", - "contentHash": "N1HLMeIqYuY+4O69ItgZJoDBnnpNkK5N2pClceTJ2nFJxsP48iCsA4iz3tm43Yszi4r/vaThoc3UoLBfGP3vKw==" + "resolved": "2.39.1", + "contentHash": "xbgykLlAr644SfYY2oxnpYYto+JFYLuUHt00hRTlhpB+5DiFC2oVSVRA+8yyq/lmkjTNidtTbN9nyK0ft4DSfw==" }, "Humanizer.Core": { "type": "Transitive", @@ -111,8 +111,8 @@ }, "Microsoft.Bcl.AsyncInterfaces": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==" + "resolved": "8.0.0", + "contentHash": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==" }, "Microsoft.Bcl.HashCode": { "type": "Transitive", @@ -170,71 +170,71 @@ }, "Microsoft.Data.Sqlite.Core": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "umhZ0ZF2RI81rGFTnYmCxI+Euj4Aqe/6Y4+8CxN9OVJNGDNIqB5laJ3wxQTU8zXCcm2k9F7FL+/6RVoOT4z1Fw==", + "resolved": "8.0.14", + "contentHash": "MT/9fCazlL4T10BwCQCxvUXOmtU4rR1qDl2mpePFhmuXONafUjXUf8FH94IR79ISxrGVHxsOWvwGzgKi6RSE/g==", "dependencies": { "SQLitePCLRaw.core": "2.1.6" } }, "Microsoft.EntityFrameworkCore": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "Ms5e5QuBAjVIuQsGumeLvkgMiOpnj6wxPvwBIoe1NfTkseWK4NZYztnhgDlpkCPkrUmJEXLv69kl349Ours30Q==", + "resolved": "8.0.14", + "contentHash": "HNn+NPKCm7rR7ij7IRCCbuImaMulFJGloyIbMwi3Ews77RsthM8gxpTZciFLgRYPsBtszKpdIClEwnWmP0vjUg==", "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "8.0.6", - "Microsoft.EntityFrameworkCore.Analyzers": "8.0.6", - "Microsoft.Extensions.Caching.Memory": "8.0.0", - "Microsoft.Extensions.Logging": "8.0.0" + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.14", + "Microsoft.EntityFrameworkCore.Analyzers": "8.0.14", + "Microsoft.Extensions.Caching.Memory": "8.0.1", + "Microsoft.Extensions.Logging": "8.0.1" } }, "Microsoft.EntityFrameworkCore.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "X7wSSBNFRuN8j8M9HDYG7rPpEeyhY+PdJZR9rftmgvsZH0eK5+bZ3b3As8iO4rLEpjsBzDnrgSIY6q2F3HQatw==" + "resolved": "8.0.14", + "contentHash": "Om8/jdWyx9eKFkA1YEgxk13KjGIzA8teLgG7iNFunsI2+MT6UT54Eb4t6oe4NQlIaACj5voUe6szVAQe9GKwDA==" }, "Microsoft.EntityFrameworkCore.Analyzers": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "fDNtuQ4lAaPaCOlsrwUck/GvnF4QLeDpMmE1L5QtxZpMSmWfnL2/vk8sDL9OVTWcfprooI9V5MNpIx3/Tq5ehg==" + "resolved": "8.0.14", + "contentHash": "lzNb3s4t5JDMHGoUFuX/f977dFythvmzGFJxvjlhExdiATPKQfquo2NM0uX8Kelfq04jRljpdbRzcsSsK1q9Tw==" }, "Microsoft.EntityFrameworkCore.Design": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "4OT+mH+8EB4Kfn1ENpDx2Ssx459j200gvdhDOKq5lkHmHzkRpmEDKS5GfqaLZvBLJKWu1FVGQ7Wnczcjb0hX4g==", + "resolved": "8.0.14", + "contentHash": "ncCvbJYGXK7eSOVqfQNXLaxMWKGaKSYX1VJZjyJXg3IxxmF50B8p/isprgrVLR+SlQwTG1lmhPAPn0dOvCqlrw==", "dependencies": { "Humanizer.Core": "2.14.1", "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0", - "Microsoft.EntityFrameworkCore.Relational": "8.0.6", - "Microsoft.Extensions.DependencyModel": "8.0.0", + "Microsoft.EntityFrameworkCore.Relational": "8.0.14", + "Microsoft.Extensions.DependencyModel": "8.0.2", "Mono.TextTemplating": "2.2.1" } }, "Microsoft.EntityFrameworkCore.Relational": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "chhfmLusCGLGvNYtvMji6KGQlduPDnJsStG/LjS8qJhFWJDDzTZpSr2LHowewcxMrMo/Axc6Jwe+WwSi/vlkTg==", + "resolved": "8.0.14", + "contentHash": "cPEeIk9nFO3+hxj9tp5AvTFdcTZkVPJCOFUiagbf37KhPGtiG0ZWpl15xOzLYTDAYjF5kxH/jcuDYGlLACJEmA==", "dependencies": { - "Microsoft.EntityFrameworkCore": "8.0.6", + "Microsoft.EntityFrameworkCore": "8.0.14", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" } }, "Microsoft.EntityFrameworkCore.Sqlite": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "nC4cZN4zReTb22qd9WDU0eDmlXvkyf2g2pqQ3VIHJbkpJcdWSY/PDgwGpbpShsVcAjXbkjGiUcv9aGwa61xQPw==", + "resolved": "8.0.14", + "contentHash": "iqrhkOirZ9mm3Yu+ut9698VDn6WSykfr9NMECIe6gObUZLxAsg28f1JmIjx2n4pKFm5Uz5sYJ3k4AUnrJbgUag==", "dependencies": { - "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.6", + "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.14", "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" } }, "Microsoft.EntityFrameworkCore.Sqlite.Core": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "87xfPtqSouxWWdynYZv/rubd0rOUeiN9+XeoMWQzpZm/5svH1TuvzFODGIY0zKuXS18NiOFyHl9N6///eaEs/Q==", + "resolved": "8.0.14", + "contentHash": "TcbHy/SdKTcrxlgx14uicVMqrBTu3SP3STGicR+JzYG4I3mVtsBgqtArt6mmUtA7UZj7sogXJ6EFpSyNsJU8Zg==", "dependencies": { - "Microsoft.Data.Sqlite.Core": "8.0.6", - "Microsoft.EntityFrameworkCore.Relational": "8.0.6", - "Microsoft.Extensions.DependencyModel": "8.0.0" + "Microsoft.Data.Sqlite.Core": "8.0.14", + "Microsoft.EntityFrameworkCore.Relational": "8.0.14", + "Microsoft.Extensions.DependencyModel": "8.0.2" } }, "Microsoft.Extensions.Caching.Abstractions": { @@ -247,13 +247,13 @@ }, "Microsoft.Extensions.Caching.Memory": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==", + "resolved": "8.0.1", + "contentHash": "HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==", "dependencies": { "Microsoft.Extensions.Caching.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", "Microsoft.Extensions.Primitives": "8.0.0" } }, @@ -284,8 +284,8 @@ }, "Microsoft.Extensions.Configuration.FileExtensions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "McP+Lz/EKwvtCv48z0YImw+L1gi1gy5rHhNaNIY2CrjloV+XY8gydT8DjMR6zWeL13AFK+DioVpppwAuO1Gi1w==", + "resolved": "8.0.1", + "contentHash": "EJzSNO9oaAXnTdtdNO6npPRsIIeZCBSNmdQ091VDO7fBiOtJAAeEq6dtrVXIi3ZyjC5XRSAtVvF8SzcneRHqKQ==", "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", @@ -296,63 +296,57 @@ }, "Microsoft.Extensions.Configuration.Json": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "C2wqUoh9OmRL1akaCcKSTmRU8z0kckfImG7zLNI8uyi47Lp+zd5LWAD17waPQEqCz3ioWOCrFUo+JJuoeZLOBw==", + "resolved": "8.0.1", + "contentHash": "L89DLNuimOghjV3tLx0ArFDwVEJD6+uGB3BMCMX01kaLzXkaXHb2021xOMl2QOxUxbdePKUZsUY7n2UUkycjRg==", "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "System.Text.Json": "8.0.0" + "Microsoft.Extensions.Configuration.FileExtensions": "8.0.1", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0" } }, "Microsoft.Extensions.DependencyInjection": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "resolved": "8.0.1", + "contentHash": "BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.DependencyInjection.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==" + "resolved": "8.0.2", + "contentHash": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==" }, "Microsoft.Extensions.DependencyModel": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==", - "dependencies": { - "System.Text.Encodings.Web": "8.0.0", - "System.Text.Json": "8.0.0" - } + "resolved": "8.0.2", + "contentHash": "mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==" }, "Microsoft.Extensions.Diagnostics.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==", + "resolved": "8.0.1", + "contentHash": "elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", - "System.Diagnostics.DiagnosticSource": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "Wtylr3ucMUQ+/6x5ngRtBQ0D0TVloWE3hbwUEhwE16OZHB66uqAEVnEvcAXxW2IFuVAuEHMXX5GebfkbSZQSTw==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.6", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.1", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.14", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.3", "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "GiHK4B5Xsf5YzL73kup2zJoJfDx5RJYBd0LZN6dx8XyOSoZnh7NNrMP+vTLxAJVp//JxHk0KIhBnW9YuFrSVig==" + "resolved": "8.0.14", + "contentHash": "se5sdveMiA3PUOWchOZXY/sGA50MrJ/Mg/G6CdQBtyA4MLySNRilVCi23YT90RAwqvI2uQEk5+buxYdpAfuwpA==" }, "Microsoft.Extensions.FileProviders.Abstractions": { "type": "Transitive", @@ -379,32 +373,32 @@ }, "Microsoft.Extensions.Hosting.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "resolved": "8.0.1", + "contentHash": "nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "resolved": "8.0.1", + "contentHash": "4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==", "dependencies": { - "Microsoft.Extensions.DependencyInjection": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0" + "Microsoft.Extensions.DependencyInjection": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Logging.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Options": { @@ -437,49 +431,49 @@ }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "jchWPuXJC4N9g1jZ7ZPSfbDSBfMmIgFw5w9VqAT5A9USdE/10IMT83wL48KkTbR7eHdphghe06iGKk7IPhYweA==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "21.0.2" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Messaging.RabbitMQ": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "/tj7IO/SHYXNRfxh7iIMms9TurhtCIozZp5lDFvd/WkPgKWZyyyZH8wxkNb9r7jIh/vXkrGJcPCxR30uoET+7g==", + "resolved": "2.0.4", + "contentHash": "tmEERdnqJq1STVGx30+wVyj7AtvtT8K2j/59lSiZ7k58ZdRku601Gs6k1KZ/sfGeobCjaB4gI7GROxK+lN6gbg==", "dependencies": { - "Monai.Deploy.Messaging": "2.0.3", - "Polly": "8.4.0", + "Monai.Deploy.Messaging": "2.0.4", + "Polly": "8.5.2", "RabbitMQ.Client": "6.8.1" } }, "Monai.Deploy.Storage": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "ceVSHBPDMxWV7C6TLBoJmJt3X0RQmdPnm+9NU17Zs0TGE58QvSEHn4GJODtK9+ncgUJICjBhPFcNHV40ybEepQ==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.105", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", - "Monai.Deploy.Storage.S3Policy": "1.0.1", - "System.IO.Abstractions": "21.0.2" + "AWSSDK.SecurityToken": "3.7.401.68", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", + "Monai.Deploy.Storage.S3Policy": "1.0.2", + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage.S3Policy": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "mgLlLRphh+vrVKen72jfEzBcoOhAzCjavGMUzWIjIFh5avmb2RJNbQERLSISOCjWnqPscc/xSPKFUUpLMOLdYw==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, "MongoDB.Bson": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "xQx/qtC2nu9oGiyNqAwfiDpUMweLi0nID677cyKykpwmj5AVMrnd//UwmcmuX95178DeY6rf7cjmA613TQXPiA==", + "resolved": "2.30.0", + "contentHash": "Gg0TQUT3IEntcqdug5a9P6d8iwL5CqOpQjVBCq1hxTbkjxdGdY6a2CPv7II44AO9GYUnORYsS6dDME2b7aqYyg==", "dependencies": { "System.Memory": "4.5.5", "System.Runtime.CompilerServices.Unsafe": "5.0.0" @@ -487,25 +481,25 @@ }, "MongoDB.Driver": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "dMqnZTV6MuvoEI4yFtSvKJdAoN6NeyAEvG8aoxnrLIVd7bR84QxLgpsM1nhK17qkOcIx/IrpMIfrvp5iMnYGBg==", + "resolved": "2.30.0", + "contentHash": "BCG8cNF0+U3h5f/O9fu3ktrYhoESBDems1w06PExfYrn2KjHBHCBdvBRY1cIbysnZVjQAJjGtFV9XgW+hXt7Hg==", "dependencies": { "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "2.25.0", - "MongoDB.Driver.Core": "2.25.0", - "MongoDB.Libmongocrypt": "1.8.2" + "MongoDB.Bson": "2.30.0", + "MongoDB.Driver.Core": "2.30.0", + "MongoDB.Libmongocrypt": "1.12.0" } }, "MongoDB.Driver.Core": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "oN4nLgO5HQEThTg/zqeoHqaO2+q64DBVb4r7BvhaFb0p0TM9jZKnCKvh1EA8d9E9swIz0CgvMrvL1mPyRCZzag==", + "resolved": "2.30.0", + "contentHash": "oepDgu24lo44SljuHmIQ99x6jHISnMC4tLfzQGniQg39xiMD8nxalm1HM9RDZcuZbbWa4F6YLt2AIhWkny3XWA==", "dependencies": { "AWSSDK.SecurityToken": "3.7.100.14", "DnsClient": "1.6.1", "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "2.25.0", - "MongoDB.Libmongocrypt": "1.8.2", + "MongoDB.Bson": "2.30.0", + "MongoDB.Libmongocrypt": "1.12.0", "SharpCompress": "0.30.1", "Snappier": "1.0.0", "System.Buffers": "4.5.1", @@ -514,8 +508,8 @@ }, "MongoDB.Libmongocrypt": { "type": "Transitive", - "resolved": "1.8.2", - "contentHash": "z/8JCULSHM1+mzkau0ivIkU9kIn8JEFFSkmYTSaMaWMMHt96JjUtMKuXxeGNGSnHZ5290ZPKIlQfjoWFk2sKog==" + "resolved": "1.12.0", + "contentHash": "B1X51jrtNacKvxKoaqWeknYeJfQS5aWf6BmVLT5JZerz3AUXFzv8edPskJYqBc3kLy1J2PWzMqqsnyb9g8FtcA==" }, "Mono.TextTemplating": { "type": "Transitive", @@ -532,21 +526,21 @@ }, "NLog": { "type": "Transitive", - "resolved": "5.3.2", - "contentHash": "cQRQZuDMjSyMe9EQBnI9v55YAMMz8GAfFd6fFJ6tc/kXnG7Hze8p1I8MgvWSBG6E36wA8vSxRrlm8uSIG+SENg==" + "resolved": "5.4.0", + "contentHash": "LwMcGSW3soF3/SL68rlJN3Eh3ktrAPycC3zZR/07OYBPraZUu0bygEC7kIN10lUQgMXT4s84Fi1chglGdGrQEg==" }, "Polly": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "z2EeUutuy49jBQyZ5s2FUuTCGx3GCzJ0cJ2HbjWwks94TsC6bKTtAHKBkMZOa/DyYRl5yIX7MshvMTWl1J6RNg==", + "resolved": "8.5.2", + "contentHash": "vbXsGgkG86nG+TOwY+SmtrGrRHmHH0DQaxtILx//d3Dz/ocJ8izSNYzdvU2gEtWa/LDD8zJLvD3HdjEkdlvkhg==", "dependencies": { - "Polly.Core": "8.4.0" + "Polly.Core": "8.5.2" } }, "Polly.Core": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "3AZxuP//pxOeBo9tQs7/tz4Z5TTbu4BYfjpaXZD0JYKJo98ngN9TMUz1nybh4k0ykWkMBpGZALV/AmVIE3ew7A==" + "resolved": "8.5.2", + "contentHash": "1MJKdxv4zwDmiWvYvVN24DsrWUfgQ4F83voH8bhbtLMdPuGy8CfTUzsgQhvyrl1a7hrM6f/ydwLVdVUI0xooUw==" }, "RabbitMQ.Client": { "type": "Transitive", @@ -663,18 +657,13 @@ "System.Composition.Runtime": "6.0.0" } }, - "System.Diagnostics.DiagnosticSource": { - "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" - }, "System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ewYQGK0kzOpfiYCF0P0nqPAnKqGhqiXAWDFeMtQtwJyERA2s7nLx7KEALwDvIFjZvX6677IsPREoLIU9oBOQvA==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "System.IO.Pipelines": { @@ -716,11 +705,8 @@ }, "System.Text.Encoding.CodePages": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "6.0.1", + "contentHash": "OV04vEWTSDXzaAJCjylOIdjB7Z7QTYQcz4/ATZSiG8PLkZLsbtaADj0Ydj4FdFnqq4PAwEA7SuILE+6ka4cn6A==" }, "System.Text.Encodings.Web": { "type": "Transitive", @@ -729,11 +715,8 @@ }, "System.Text.Json": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", - "dependencies": { - "System.Text.Encodings.Web": "8.0.0" - } + "resolved": "8.0.5", + "contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==" }, "System.Threading.Channels": { "type": "Transitive", @@ -742,15 +725,15 @@ }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ViPtOy4lAlmWq9GDEwiE5C9XSgDGHUWMRvVvruI38pbikUXkgu7xnCVW7PYdQOjS+iWWcQHt+U7oyPedfnWSHg==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ii6Xgru3ozRaLezwE/lKAPTdE3ES+S3P3ul+QrMxIP10GN+LF0JAi4aWqb8lxzEAwBMSAeK/QipEpVt4KYlTOg==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "ZstdSharp.Port": { @@ -761,21 +744,21 @@ "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "HL7-dotnetcore": "[2.36.0, )", + "HL7-dotnetcore": "[2.39.1, )", "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.6, )", + "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.14, )", "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Messaging.RabbitMQ": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )", - "fo-dicom": "[5.1.2, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Messaging.RabbitMQ": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )", + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )", - "System.IO.Abstractions": "[21.0.2, )" + "Ardalis.GuardClauses": "[4.6.0, )", + "System.IO.Abstractions": "[21.3.1, )" } }, "monai.deploy.informaticsgateway.configuration": { @@ -790,29 +773,29 @@ "dependencies": { "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", - "NLog": "[5.3.2, )" + "NLog": "[5.4.0, )" } }, "monai.deploy.informaticsgateway.database.entityframework": { "type": "Project", "dependencies": { - "Microsoft.EntityFrameworkCore": "[8.0.6, )", - "Microsoft.EntityFrameworkCore.Design": "[8.0.6, )", - "Microsoft.EntityFrameworkCore.Sqlite": "[8.0.6, )", - "Microsoft.Extensions.Configuration.FileExtensions": "[8.0.0, )", - "Microsoft.Extensions.Configuration.Json": "[8.0.0, )", + "Microsoft.EntityFrameworkCore": "[8.0.14, )", + "Microsoft.EntityFrameworkCore.Design": "[8.0.14, )", + "Microsoft.EntityFrameworkCore.Sqlite": "[8.0.14, )", + "Microsoft.Extensions.Configuration.FileExtensions": "[8.0.1, )", + "Microsoft.Extensions.Configuration.Json": "[8.0.1, )", "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", "Monai.Deploy.InformaticsGateway.Database.Api": "[1.0.0, )", - "Polly": "[8.4.0, )" + "Polly": "[8.5.2, )" } }, "monai.deploy.informaticsgateway.database.mongodb": { "type": "Project", "dependencies": { "Monai.Deploy.InformaticsGateway.Database.Api": "[1.0.0, )", - "MongoDB.Driver": "[2.25.0, )", - "Polly": "[8.4.0, )" + "MongoDB.Driver": "[2.30.0, )", + "Polly": "[8.5.2, )" } } } diff --git a/src/DicomWebClient/CLI/packages.lock.json b/src/DicomWebClient/CLI/packages.lock.json old mode 100755 new mode 100644 index 8f7ad684..b9db9f5b --- a/src/DicomWebClient/CLI/packages.lock.json +++ b/src/DicomWebClient/CLI/packages.lock.json @@ -14,42 +14,42 @@ }, "Microsoft.NET.ILLink.Tasks": { "type": "Direct", - "requested": "[8.0.7, )", - "resolved": "8.0.7", - "contentHash": "iI52ptEKby2ymQ6B7h4TWbFmm85T4VvLgc/HvS45Yr3lgi4IIFbQtjON3bQbX/Vc94jXNSLvrDOp5Kh7SJyFYQ==" + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "4U2fd7PexNKrK5ZqfqIcXZj9/lRRjFsLgA/pxuFQTuGQuLYP/+7yACz/j7EmWbEj/fspOf4mafi/vHIy/rKDzQ==" }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "CommunityToolkit.HighPerformance": { "type": "Transitive", - "resolved": "8.2.2", - "contentHash": "+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==" + "resolved": "8.3.2", + "contentHash": "1Os81ua0FmIOtiSgOk5C1KBraQ3SDfxs/7BG4qDagm48nGplr//lAVqLH9I2TLDVqRFdhqTUaEITFA5Ho/Ovkw==" }, "fo-dicom": { "type": "Transitive", - "resolved": "5.1.2", - "contentHash": "2lM76Vq+GRdwyY3BQiUJ+V6yxdFiOG4ysLJC7qNTxLsq/1pr5ZTTXiIzWQa+uJ0MuKnzzFogV5+meDflsyjs2g==", + "resolved": "5.2.1", + "contentHash": "Oa6raonOj/Xm+a1j3O89OlUXJIF55jLAKjCuXKINYJMJ+hJ/9Al1YOxPs1hut8DBKvHbgYtgdRFtqGNS+Qt6Uw==", "dependencies": { - "CommunityToolkit.HighPerformance": "8.2.2", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "CommunityToolkit.HighPerformance": "8.3.2", + "Microsoft.Bcl.AsyncInterfaces": "8.0.0", "Microsoft.Bcl.HashCode": "1.1.1", "Microsoft.Extensions.DependencyInjection": "6.0.1", "Microsoft.Extensions.Logging": "6.0.0", "Microsoft.Extensions.Options": "6.0.0", "System.Buffers": "4.5.1", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "6.0.9", + "System.Text.Encoding.CodePages": "6.0.1", + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.5", "System.Threading.Channels": "6.0.0" } }, "Microsoft.Bcl.AsyncInterfaces": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==" + "resolved": "8.0.0", + "contentHash": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==" }, "Microsoft.Bcl.HashCode": { "type": "Transitive", @@ -344,28 +344,18 @@ }, "System.Text.Encoding.CodePages": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "6.0.1", + "contentHash": "OV04vEWTSDXzaAJCjylOIdjB7Z7QTYQcz4/ATZSiG8PLkZLsbtaADj0Ydj4FdFnqq4PAwEA7SuILE+6ka4cn6A==" }, "System.Text.Encodings.Web": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "8.0.0", + "contentHash": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==" }, "System.Text.Json": { "type": "Transitive", - "resolved": "6.0.9", - "contentHash": "2j16oUgtIzl7Xtk7demG0i/v5aU/ZvULcAnJvPb63U3ZhXJ494UYcxuEj5Fs49i3XDrk5kU/8I+6l9zRCw3cJw==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "6.0.0" - } + "resolved": "8.0.5", + "contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==" }, "System.Threading.Channels": { "type": "Transitive", @@ -375,14 +365,14 @@ "monai.deploy.informaticsgateway.client.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )" + "Ardalis.GuardClauses": "[4.6.0, )" } }, "monai.deploy.informaticsgateway.dicomweb.client": { "type": "Project", "dependencies": { "Monai.Deploy.InformaticsGateway.Client.Common": "[1.0.0, )", - "fo-dicom": "[5.1.2, )" + "fo-dicom": "[5.2.1, )" } } } diff --git a/src/DicomWebClient/Monai.Deploy.InformaticsGateway.DicomWeb.Client.csproj b/src/DicomWebClient/Monai.Deploy.InformaticsGateway.DicomWeb.Client.csproj index 61cf8827..84520237 100644 --- a/src/DicomWebClient/Monai.Deploy.InformaticsGateway.DicomWeb.Client.csproj +++ b/src/DicomWebClient/Monai.Deploy.InformaticsGateway.DicomWeb.Client.csproj @@ -43,7 +43,7 @@ - + diff --git a/src/DicomWebClient/Test/Monai.Deploy.InformaticsGateway.DicomWeb.Client.Test.csproj b/src/DicomWebClient/Test/Monai.Deploy.InformaticsGateway.DicomWeb.Client.Test.csproj index 4f9462d5..bf769a5e 100644 --- a/src/DicomWebClient/Test/Monai.Deploy.InformaticsGateway.DicomWeb.Client.Test.csproj +++ b/src/DicomWebClient/Test/Monai.Deploy.InformaticsGateway.DicomWeb.Client.Test.csproj @@ -22,12 +22,12 @@ true - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/src/DicomWebClient/Test/packages.lock.json b/src/DicomWebClient/Test/packages.lock.json index c27c1bd9..5574511b 100644 --- a/src/DicomWebClient/Test/packages.lock.json +++ b/src/DicomWebClient/Test/packages.lock.json @@ -4,24 +4,24 @@ "net8.0": { "Ardalis.GuardClauses": { "type": "Direct", - "requested": "[4.5.0, )", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "requested": "[4.6.0, )", + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "coverlet.collector": { "type": "Direct", - "requested": "[6.0.2, )", - "resolved": "6.0.2", - "contentHash": "bJShQ6uWRTQ100ZeyiMqcFlhP7WJ+bCuabUs885dJiBEzMsJMSFr7BOyeCw4rgvQokteGi5rKQTlkhfQPUXg2A==" + "requested": "[6.0.4, )", + "resolved": "6.0.4", + "contentHash": "lkhqpF8Pu2Y7IiN7OntbsTtdbpR1syMsm2F3IgX6ootA4ffRqWL5jF7XipHuZQTdVuWG/gVAAcf8mjk8Tz0xPg==" }, "Microsoft.NET.Test.Sdk": { "type": "Direct", - "requested": "[17.10.0, )", - "resolved": "17.10.0", - "contentHash": "0/2HeACkaHEYU3wc83YlcD2Fi4LMtECJjqrtvw0lPi9DCEa35zSPt1j4fuvM8NagjDqJuh1Ja35WcRtn1Um6/A==", + "requested": "[17.13.0, )", + "resolved": "17.13.0", + "contentHash": "W19wCPizaIC9Zh47w8wWI/yxuqR7/dtABwOrc8r2jX/8mUNxM2vw4fXDh+DJTeogxV+KzKwg5jNNGQVwf3LXyA==", "dependencies": { - "Microsoft.CodeCoverage": "17.10.0", - "Microsoft.TestPlatform.TestHost": "17.10.0" + "Microsoft.CodeCoverage": "17.13.0", + "Microsoft.TestPlatform.TestHost": "17.13.0" } }, "Moq": { @@ -69,31 +69,31 @@ }, "CommunityToolkit.HighPerformance": { "type": "Transitive", - "resolved": "8.2.2", - "contentHash": "+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==" + "resolved": "8.3.2", + "contentHash": "1Os81ua0FmIOtiSgOk5C1KBraQ3SDfxs/7BG4qDagm48nGplr//lAVqLH9I2TLDVqRFdhqTUaEITFA5Ho/Ovkw==" }, "fo-dicom": { "type": "Transitive", - "resolved": "5.1.2", - "contentHash": "2lM76Vq+GRdwyY3BQiUJ+V6yxdFiOG4ysLJC7qNTxLsq/1pr5ZTTXiIzWQa+uJ0MuKnzzFogV5+meDflsyjs2g==", + "resolved": "5.2.1", + "contentHash": "Oa6raonOj/Xm+a1j3O89OlUXJIF55jLAKjCuXKINYJMJ+hJ/9Al1YOxPs1hut8DBKvHbgYtgdRFtqGNS+Qt6Uw==", "dependencies": { - "CommunityToolkit.HighPerformance": "8.2.2", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "CommunityToolkit.HighPerformance": "8.3.2", + "Microsoft.Bcl.AsyncInterfaces": "8.0.0", "Microsoft.Bcl.HashCode": "1.1.1", "Microsoft.Extensions.DependencyInjection": "6.0.1", "Microsoft.Extensions.Logging": "6.0.0", "Microsoft.Extensions.Options": "6.0.0", "System.Buffers": "4.5.1", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "6.0.9", + "System.Text.Encoding.CodePages": "6.0.1", + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.5", "System.Threading.Channels": "6.0.0" } }, "Microsoft.Bcl.AsyncInterfaces": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==" + "resolved": "8.0.0", + "contentHash": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==" }, "Microsoft.Bcl.HashCode": { "type": "Transitive", @@ -102,8 +102,8 @@ }, "Microsoft.CodeCoverage": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "yC7oSlnR54XO5kOuHlVOKtxomNNN1BWXX8lK1G2jaPXT9sUok7kCOoA4Pgs0qyFaCtMrNsprztYMeoEGqCm4uA==" + "resolved": "17.13.0", + "contentHash": "9LIUy0y+DvUmEPtbRDw6Bay3rzwqFV8P4efTrK4CZhQle3M/QwLPjISghfcolmEGAPWxuJi6m98ZEfk4VR4Lfg==" }, "Microsoft.Extensions.DependencyInjection": { "type": "Transitive", @@ -155,18 +155,18 @@ }, "Microsoft.TestPlatform.ObjectModel": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "KkwhjQevuDj0aBRoPLY6OLAhGqbPUEBuKLbaCs0kUVw29qiOYncdORd4mLVJbn9vGZ7/iFGQ/+AoJl0Tu5Umdg==", + "resolved": "17.13.0", + "contentHash": "bt0E0Dx+iqW97o4A59RCmUmz/5NarJ7LRL+jXbSHod72ibL5XdNm1Ke+UO5tFhBG4VwHLcSjqq9BUSblGNWamw==", "dependencies": { "System.Reflection.Metadata": "1.6.0" } }, "Microsoft.TestPlatform.TestHost": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "LWpMdfqhHvcUkeMCvNYJO8QlPLlYz9XPPb+ZbaXIKhdmjAV0wqTSrTiW5FLaf7RRZT50AQADDOYMOe0HxDxNgA==", + "resolved": "17.13.0", + "contentHash": "9GGw08Dc3AXspjekdyTdZ/wYWFlxbgcF0s7BKxzVX+hzAwpifDOdxM+ceVaaJSQOwqt3jtuNlHn3XTpKUS9x9Q==", "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "17.10.0", + "Microsoft.TestPlatform.ObjectModel": "17.13.0", "Newtonsoft.Json": "13.0.1" } }, @@ -205,28 +205,18 @@ }, "System.Text.Encoding.CodePages": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "6.0.1", + "contentHash": "OV04vEWTSDXzaAJCjylOIdjB7Z7QTYQcz4/ATZSiG8PLkZLsbtaADj0Ydj4FdFnqq4PAwEA7SuILE+6ka4cn6A==" }, "System.Text.Encodings.Web": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "8.0.0", + "contentHash": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==" }, "System.Text.Json": { "type": "Transitive", - "resolved": "6.0.9", - "contentHash": "2j16oUgtIzl7Xtk7demG0i/v5aU/ZvULcAnJvPb63U3ZhXJ494UYcxuEj5Fs49i3XDrk5kU/8I+6l9zRCw3cJw==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "6.0.0" - } + "resolved": "8.0.5", + "contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==" }, "System.Threading.Channels": { "type": "Transitive", @@ -276,14 +266,14 @@ "monai.deploy.informaticsgateway.client.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )" + "Ardalis.GuardClauses": "[4.6.0, )" } }, "monai.deploy.informaticsgateway.dicomweb.client": { "type": "Project", "dependencies": { "Monai.Deploy.InformaticsGateway.Client.Common": "[1.0.0, )", - "fo-dicom": "[5.1.2, )" + "fo-dicom": "[5.2.1, )" } } } diff --git a/src/DicomWebClient/packages.lock.json b/src/DicomWebClient/packages.lock.json old mode 100755 new mode 100644 index b24bb65e..e392cfd9 --- a/src/DicomWebClient/packages.lock.json +++ b/src/DicomWebClient/packages.lock.json @@ -4,43 +4,43 @@ "net8.0": { "fo-dicom": { "type": "Direct", - "requested": "[5.1.2, )", - "resolved": "5.1.2", - "contentHash": "2lM76Vq+GRdwyY3BQiUJ+V6yxdFiOG4ysLJC7qNTxLsq/1pr5ZTTXiIzWQa+uJ0MuKnzzFogV5+meDflsyjs2g==", + "requested": "[5.2.1, )", + "resolved": "5.2.1", + "contentHash": "Oa6raonOj/Xm+a1j3O89OlUXJIF55jLAKjCuXKINYJMJ+hJ/9Al1YOxPs1hut8DBKvHbgYtgdRFtqGNS+Qt6Uw==", "dependencies": { - "CommunityToolkit.HighPerformance": "8.2.2", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "CommunityToolkit.HighPerformance": "8.3.2", + "Microsoft.Bcl.AsyncInterfaces": "8.0.0", "Microsoft.Bcl.HashCode": "1.1.1", "Microsoft.Extensions.DependencyInjection": "6.0.1", "Microsoft.Extensions.Logging": "6.0.0", "Microsoft.Extensions.Options": "6.0.0", "System.Buffers": "4.5.1", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "6.0.9", + "System.Text.Encoding.CodePages": "6.0.1", + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.5", "System.Threading.Channels": "6.0.0" } }, "Microsoft.NET.ILLink.Tasks": { "type": "Direct", - "requested": "[8.0.7, )", - "resolved": "8.0.7", - "contentHash": "iI52ptEKby2ymQ6B7h4TWbFmm85T4VvLgc/HvS45Yr3lgi4IIFbQtjON3bQbX/Vc94jXNSLvrDOp5Kh7SJyFYQ==" + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "4U2fd7PexNKrK5ZqfqIcXZj9/lRRjFsLgA/pxuFQTuGQuLYP/+7yACz/j7EmWbEj/fspOf4mafi/vHIy/rKDzQ==" }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "CommunityToolkit.HighPerformance": { "type": "Transitive", - "resolved": "8.2.2", - "contentHash": "+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==" + "resolved": "8.3.2", + "contentHash": "1Os81ua0FmIOtiSgOk5C1KBraQ3SDfxs/7BG4qDagm48nGplr//lAVqLH9I2TLDVqRFdhqTUaEITFA5Ho/Ovkw==" }, "Microsoft.Bcl.AsyncInterfaces": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==" + "resolved": "8.0.0", + "contentHash": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==" }, "Microsoft.Bcl.HashCode": { "type": "Transitive", @@ -115,28 +115,18 @@ }, "System.Text.Encoding.CodePages": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "6.0.1", + "contentHash": "OV04vEWTSDXzaAJCjylOIdjB7Z7QTYQcz4/ATZSiG8PLkZLsbtaADj0Ydj4FdFnqq4PAwEA7SuILE+6ka4cn6A==" }, "System.Text.Encodings.Web": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "8.0.0", + "contentHash": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==" }, "System.Text.Json": { "type": "Transitive", - "resolved": "6.0.9", - "contentHash": "2j16oUgtIzl7Xtk7demG0i/v5aU/ZvULcAnJvPb63U3ZhXJ494UYcxuEj5Fs49i3XDrk5kU/8I+6l9zRCw3cJw==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encodings.Web": "6.0.0" - } + "resolved": "8.0.5", + "contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==" }, "System.Threading.Channels": { "type": "Transitive", @@ -146,7 +136,7 @@ "monai.deploy.informaticsgateway.client.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )" + "Ardalis.GuardClauses": "[4.6.0, )" } } } diff --git a/src/InformaticsGateway/Monai.Deploy.InformaticsGateway.csproj b/src/InformaticsGateway/Monai.Deploy.InformaticsGateway.csproj index 502413ae..458966df 100755 --- a/src/InformaticsGateway/Monai.Deploy.InformaticsGateway.csproj +++ b/src/InformaticsGateway/Monai.Deploy.InformaticsGateway.csproj @@ -34,13 +34,13 @@ - - - - - - - + + + + + + + diff --git a/src/InformaticsGateway/Test/Monai.Deploy.InformaticsGateway.Test.csproj b/src/InformaticsGateway/Test/Monai.Deploy.InformaticsGateway.Test.csproj index 4db14f4f..b966e407 100755 --- a/src/InformaticsGateway/Test/Monai.Deploy.InformaticsGateway.Test.csproj +++ b/src/InformaticsGateway/Test/Monai.Deploy.InformaticsGateway.Test.csproj @@ -28,13 +28,13 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive - + - + diff --git a/src/InformaticsGateway/Test/packages.lock.json b/src/InformaticsGateway/Test/packages.lock.json index 1f5a7452..68c3ad75 100644 --- a/src/InformaticsGateway/Test/packages.lock.json +++ b/src/InformaticsGateway/Test/packages.lock.json @@ -4,18 +4,18 @@ "net8.0": { "coverlet.collector": { "type": "Direct", - "requested": "[6.0.2, )", - "resolved": "6.0.2", - "contentHash": "bJShQ6uWRTQ100ZeyiMqcFlhP7WJ+bCuabUs885dJiBEzMsJMSFr7BOyeCw4rgvQokteGi5rKQTlkhfQPUXg2A==" + "requested": "[6.0.4, )", + "resolved": "6.0.4", + "contentHash": "lkhqpF8Pu2Y7IiN7OntbsTtdbpR1syMsm2F3IgX6ootA4ffRqWL5jF7XipHuZQTdVuWG/gVAAcf8mjk8Tz0xPg==" }, "Microsoft.NET.Test.Sdk": { "type": "Direct", - "requested": "[17.10.0, )", - "resolved": "17.10.0", - "contentHash": "0/2HeACkaHEYU3wc83YlcD2Fi4LMtECJjqrtvw0lPi9DCEa35zSPt1j4fuvM8NagjDqJuh1Ja35WcRtn1Um6/A==", + "requested": "[17.13.0, )", + "resolved": "17.13.0", + "contentHash": "W19wCPizaIC9Zh47w8wWI/yxuqR7/dtABwOrc8r2jX/8mUNxM2vw4fXDh+DJTeogxV+KzKwg5jNNGQVwf3LXyA==", "dependencies": { - "Microsoft.CodeCoverage": "17.10.0", - "Microsoft.TestPlatform.TestHost": "17.10.0" + "Microsoft.CodeCoverage": "17.13.0", + "Microsoft.TestPlatform.TestHost": "17.13.0" } }, "Moq": { @@ -29,11 +29,11 @@ }, "System.IO.Abstractions.TestingHelpers": { "type": "Direct", - "requested": "[21.0.2, )", - "resolved": "21.0.2", - "contentHash": "35gVJWBrsUkf+ob0xZJaVja0gLYA5UnqM1K0cSHHKfZ71aMMwUbhNNOy/cpHiVF+Z7FLiREVE080F9QDCf5O2A==", + "requested": "[21.3.1, )", + "resolved": "21.3.1", + "contentHash": "LsvGSS5XbvVonvWo1fb6X5T3WFAe59A9A+F+KiyXXDEw8FDDEvaoI+IbUzLPyjTZJ1sIFredoJCgppXjEESL4A==", "dependencies": { - "TestableIO.System.IO.Abstractions.TestingHelpers": "21.0.2" + "TestableIO.System.IO.Abstractions.TestingHelpers": "21.3.1" } }, "xRetry": { @@ -64,29 +64,29 @@ }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AspNetCore.HealthChecks.MongoDb": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "/IZb7dDJBalyF7eE1/Ql5zFcTqVSAejYIPpzMThzgTj049GhvuYWdMJsMf+Y2+u1vUlG0vy0PKE763XdIuaoFg==", + "resolved": "8.1.0", + "contentHash": "NuVDrj7UXBVniePh6JnuM8ryZRWdOIGOBes3owg2WQV/1NPntpWqX/DYaP6SBduHULUp8XRbwAui8qKQAW4SDA==", "dependencies": { "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", - "MongoDB.Driver": "2.22.0" + "MongoDB.Driver": "2.28.0" } }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.304.15", - "contentHash": "XLfl4/wuTDWXH73FjGUx5P6Jf6FNLTlyVwWvQ0b/WyBOtZVJxPlCKUTYDn06VdqcLGg3uPP6FKJqnplKsnMHMw==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.105", - "contentHash": "axqpqdA4QZvHzEdGDLk5/IpPQsUTIcnVDulz4uyE+UEeYAHpFcp/BNQxmmIU4Gdv0G5KwQWKiaUaZPuLVN0Esg==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.304.15, 4.0.0)" + "AWSSDK.Core": "[3.7.402.25, 4.0.0)" } }, "Castle.Core": { @@ -99,8 +99,8 @@ }, "CommunityToolkit.HighPerformance": { "type": "Transitive", - "resolved": "8.2.2", - "contentHash": "+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==" + "resolved": "8.3.2", + "contentHash": "1Os81ua0FmIOtiSgOk5C1KBraQ3SDfxs/7BG4qDagm48nGplr//lAVqLH9I2TLDVqRFdhqTUaEITFA5Ho/Ovkw==" }, "DnsClient": { "type": "Transitive", @@ -129,26 +129,26 @@ }, "fo-dicom": { "type": "Transitive", - "resolved": "5.1.2", - "contentHash": "2lM76Vq+GRdwyY3BQiUJ+V6yxdFiOG4ysLJC7qNTxLsq/1pr5ZTTXiIzWQa+uJ0MuKnzzFogV5+meDflsyjs2g==", + "resolved": "5.2.1", + "contentHash": "Oa6raonOj/Xm+a1j3O89OlUXJIF55jLAKjCuXKINYJMJ+hJ/9Al1YOxPs1hut8DBKvHbgYtgdRFtqGNS+Qt6Uw==", "dependencies": { - "CommunityToolkit.HighPerformance": "8.2.2", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "CommunityToolkit.HighPerformance": "8.3.2", + "Microsoft.Bcl.AsyncInterfaces": "8.0.0", "Microsoft.Bcl.HashCode": "1.1.1", "Microsoft.Extensions.DependencyInjection": "6.0.1", "Microsoft.Extensions.Logging": "6.0.0", "Microsoft.Extensions.Options": "6.0.0", "System.Buffers": "4.5.1", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "6.0.9", + "System.Text.Encoding.CodePages": "6.0.1", + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.5", "System.Threading.Channels": "6.0.0" } }, "HL7-dotnetcore": { "type": "Transitive", - "resolved": "2.36.0", - "contentHash": "N1HLMeIqYuY+4O69ItgZJoDBnnpNkK5N2pClceTJ2nFJxsP48iCsA4iz3tm43Yszi4r/vaThoc3UoLBfGP3vKw==" + "resolved": "2.39.1", + "contentHash": "xbgykLlAr644SfYY2oxnpYYto+JFYLuUHt00hRTlhpB+5DiFC2oVSVRA+8yyq/lmkjTNidtTbN9nyK0ft4DSfw==" }, "Humanizer.Core": { "type": "Transitive", @@ -162,16 +162,16 @@ }, "Microsoft.AspNetCore.Authentication.JwtBearer": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "rwxaZYHips5M9vqxRkGfJthTx+Ws4O4yCuefn17J371jL3ouC5Ker43h2hXb5yd9BMnImE9rznT75KJHm6bMgg==", + "resolved": "8.0.14", + "contentHash": "e19jmWJAQucbPYk3/fihJMDCYfv6CO+Qwp34pOehUSCbaHROw6FZ551SN1D0s9Btl0U/QHfuwFq6Z8Oa2ktE6g==", "dependencies": { - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.0.3" + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.1.2" } }, "Microsoft.Bcl.AsyncInterfaces": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==" + "resolved": "8.0.0", + "contentHash": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==" }, "Microsoft.Bcl.HashCode": { "type": "Transitive", @@ -229,84 +229,84 @@ }, "Microsoft.CodeCoverage": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "yC7oSlnR54XO5kOuHlVOKtxomNNN1BWXX8lK1G2jaPXT9sUok7kCOoA4Pgs0qyFaCtMrNsprztYMeoEGqCm4uA==" + "resolved": "17.13.0", + "contentHash": "9LIUy0y+DvUmEPtbRDw6Bay3rzwqFV8P4efTrK4CZhQle3M/QwLPjISghfcolmEGAPWxuJi6m98ZEfk4VR4Lfg==" }, "Microsoft.Data.Sqlite.Core": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "umhZ0ZF2RI81rGFTnYmCxI+Euj4Aqe/6Y4+8CxN9OVJNGDNIqB5laJ3wxQTU8zXCcm2k9F7FL+/6RVoOT4z1Fw==", + "resolved": "8.0.14", + "contentHash": "MT/9fCazlL4T10BwCQCxvUXOmtU4rR1qDl2mpePFhmuXONafUjXUf8FH94IR79ISxrGVHxsOWvwGzgKi6RSE/g==", "dependencies": { "SQLitePCLRaw.core": "2.1.6" } }, "Microsoft.EntityFrameworkCore": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "Ms5e5QuBAjVIuQsGumeLvkgMiOpnj6wxPvwBIoe1NfTkseWK4NZYztnhgDlpkCPkrUmJEXLv69kl349Ours30Q==", + "resolved": "8.0.14", + "contentHash": "HNn+NPKCm7rR7ij7IRCCbuImaMulFJGloyIbMwi3Ews77RsthM8gxpTZciFLgRYPsBtszKpdIClEwnWmP0vjUg==", "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "8.0.6", - "Microsoft.EntityFrameworkCore.Analyzers": "8.0.6", - "Microsoft.Extensions.Caching.Memory": "8.0.0", - "Microsoft.Extensions.Logging": "8.0.0" + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.14", + "Microsoft.EntityFrameworkCore.Analyzers": "8.0.14", + "Microsoft.Extensions.Caching.Memory": "8.0.1", + "Microsoft.Extensions.Logging": "8.0.1" } }, "Microsoft.EntityFrameworkCore.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "X7wSSBNFRuN8j8M9HDYG7rPpEeyhY+PdJZR9rftmgvsZH0eK5+bZ3b3As8iO4rLEpjsBzDnrgSIY6q2F3HQatw==" + "resolved": "8.0.14", + "contentHash": "Om8/jdWyx9eKFkA1YEgxk13KjGIzA8teLgG7iNFunsI2+MT6UT54Eb4t6oe4NQlIaACj5voUe6szVAQe9GKwDA==" }, "Microsoft.EntityFrameworkCore.Analyzers": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "fDNtuQ4lAaPaCOlsrwUck/GvnF4QLeDpMmE1L5QtxZpMSmWfnL2/vk8sDL9OVTWcfprooI9V5MNpIx3/Tq5ehg==" + "resolved": "8.0.14", + "contentHash": "lzNb3s4t5JDMHGoUFuX/f977dFythvmzGFJxvjlhExdiATPKQfquo2NM0uX8Kelfq04jRljpdbRzcsSsK1q9Tw==" }, "Microsoft.EntityFrameworkCore.Design": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "4OT+mH+8EB4Kfn1ENpDx2Ssx459j200gvdhDOKq5lkHmHzkRpmEDKS5GfqaLZvBLJKWu1FVGQ7Wnczcjb0hX4g==", + "resolved": "8.0.14", + "contentHash": "ncCvbJYGXK7eSOVqfQNXLaxMWKGaKSYX1VJZjyJXg3IxxmF50B8p/isprgrVLR+SlQwTG1lmhPAPn0dOvCqlrw==", "dependencies": { "Humanizer.Core": "2.14.1", "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0", - "Microsoft.EntityFrameworkCore.Relational": "8.0.6", - "Microsoft.Extensions.DependencyModel": "8.0.0", + "Microsoft.EntityFrameworkCore.Relational": "8.0.14", + "Microsoft.Extensions.DependencyModel": "8.0.2", "Mono.TextTemplating": "2.2.1" } }, "Microsoft.EntityFrameworkCore.Relational": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "chhfmLusCGLGvNYtvMji6KGQlduPDnJsStG/LjS8qJhFWJDDzTZpSr2LHowewcxMrMo/Axc6Jwe+WwSi/vlkTg==", + "resolved": "8.0.14", + "contentHash": "cPEeIk9nFO3+hxj9tp5AvTFdcTZkVPJCOFUiagbf37KhPGtiG0ZWpl15xOzLYTDAYjF5kxH/jcuDYGlLACJEmA==", "dependencies": { - "Microsoft.EntityFrameworkCore": "8.0.6", + "Microsoft.EntityFrameworkCore": "8.0.14", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" } }, "Microsoft.EntityFrameworkCore.Sqlite": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "nC4cZN4zReTb22qd9WDU0eDmlXvkyf2g2pqQ3VIHJbkpJcdWSY/PDgwGpbpShsVcAjXbkjGiUcv9aGwa61xQPw==", + "resolved": "8.0.14", + "contentHash": "iqrhkOirZ9mm3Yu+ut9698VDn6WSykfr9NMECIe6gObUZLxAsg28f1JmIjx2n4pKFm5Uz5sYJ3k4AUnrJbgUag==", "dependencies": { - "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.6", + "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.14", "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" } }, "Microsoft.EntityFrameworkCore.Sqlite.Core": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "87xfPtqSouxWWdynYZv/rubd0rOUeiN9+XeoMWQzpZm/5svH1TuvzFODGIY0zKuXS18NiOFyHl9N6///eaEs/Q==", + "resolved": "8.0.14", + "contentHash": "TcbHy/SdKTcrxlgx14uicVMqrBTu3SP3STGicR+JzYG4I3mVtsBgqtArt6mmUtA7UZj7sogXJ6EFpSyNsJU8Zg==", "dependencies": { - "Microsoft.Data.Sqlite.Core": "8.0.6", - "Microsoft.EntityFrameworkCore.Relational": "8.0.6", - "Microsoft.Extensions.DependencyModel": "8.0.0" + "Microsoft.Data.Sqlite.Core": "8.0.14", + "Microsoft.EntityFrameworkCore.Relational": "8.0.14", + "Microsoft.Extensions.DependencyModel": "8.0.2" } }, "Microsoft.EntityFrameworkCore.Tools": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "UsrAqShiZQBK2lcZsXoyFPccbiLRd2az1uXe1he2z4r2TUYyxNQFy+eysGCpZg0g62I4jFRJfvXIAmCi4QCUpg==", + "resolved": "8.0.14", + "contentHash": "nWlJaFEvT7HpLkOusyReeQPeHsl5EUIBlI5Pr05SYhkWFQ7KGLmUNdv4j1aAjrO+x42Enqr7fu7r3MXLPQqImg==", "dependencies": { - "Microsoft.EntityFrameworkCore.Design": "8.0.6" + "Microsoft.EntityFrameworkCore.Design": "8.0.14" } }, "Microsoft.Extensions.ApiDescription.Server": { @@ -324,13 +324,13 @@ }, "Microsoft.Extensions.Caching.Memory": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==", + "resolved": "8.0.1", + "contentHash": "HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==", "dependencies": { "Microsoft.Extensions.Caching.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", "Microsoft.Extensions.Primitives": "8.0.0" } }, @@ -353,16 +353,16 @@ }, "Microsoft.Extensions.Configuration.Binder": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "mBMoXLsr5s1y2zOHWmKsE9veDcx8h1x/c3rz4baEdQKTeDcmQAPNbB54Pi/lhFO3K431eEq6PFbMgLaa6PHFfA==", + "resolved": "8.0.2", + "contentHash": "7IQhGK+wjyGrNsPBjJcZwWAr+Wf6D4+TwOptUt77bWtgNkiV8tDEbhFS+dDamtQFZ2X7kWG9m71iZQRj2x3zgQ==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" } }, "Microsoft.Extensions.Configuration.FileExtensions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "McP+Lz/EKwvtCv48z0YImw+L1gi1gy5rHhNaNIY2CrjloV+XY8gydT8DjMR6zWeL13AFK+DioVpppwAuO1Gi1w==", + "resolved": "8.0.1", + "contentHash": "EJzSNO9oaAXnTdtdNO6npPRsIIeZCBSNmdQ091VDO7fBiOtJAAeEq6dtrVXIi3ZyjC5XRSAtVvF8SzcneRHqKQ==", "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", @@ -373,72 +373,66 @@ }, "Microsoft.Extensions.Configuration.Json": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "C2wqUoh9OmRL1akaCcKSTmRU8z0kckfImG7zLNI8uyi47Lp+zd5LWAD17waPQEqCz3ioWOCrFUo+JJuoeZLOBw==", + "resolved": "8.0.1", + "contentHash": "L89DLNuimOghjV3tLx0ArFDwVEJD6+uGB3BMCMX01kaLzXkaXHb2021xOMl2QOxUxbdePKUZsUY7n2UUkycjRg==", "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "System.Text.Json": "8.0.0" + "Microsoft.Extensions.Configuration.FileExtensions": "8.0.1", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0" } }, "Microsoft.Extensions.DependencyInjection": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "resolved": "8.0.1", + "contentHash": "BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.DependencyInjection.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==" + "resolved": "8.0.2", + "contentHash": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==" }, "Microsoft.Extensions.DependencyModel": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==", - "dependencies": { - "System.Text.Encodings.Web": "8.0.0", - "System.Text.Json": "8.0.0" - } + "resolved": "8.0.2", + "contentHash": "mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==" }, "Microsoft.Extensions.Diagnostics.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==", + "resolved": "8.0.1", + "contentHash": "elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", - "System.Diagnostics.DiagnosticSource": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "Wtylr3ucMUQ+/6x5ngRtBQ0D0TVloWE3hbwUEhwE16OZHB66uqAEVnEvcAXxW2IFuVAuEHMXX5GebfkbSZQSTw==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.6", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.1", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.14", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.3", "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "GiHK4B5Xsf5YzL73kup2zJoJfDx5RJYBd0LZN6dx8XyOSoZnh7NNrMP+vTLxAJVp//JxHk0KIhBnW9YuFrSVig==" + "resolved": "8.0.14", + "contentHash": "se5sdveMiA3PUOWchOZXY/sGA50MrJ/Mg/G6CdQBtyA4MLySNRilVCi23YT90RAwqvI2uQEk5+buxYdpAfuwpA==" }, "Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "paBCLbj7dMnPSlZ+dkD/Q8KNmI/UZbnCrBVMbX/GZ/6Cs787GSrWawX1UtiCDPfsVGvoaHhQ5oyWHoXrvhb+1g==", + "resolved": "8.0.14", + "contentHash": "4b/wu7E9oNd994GQyehsJkoLAC8BVrRkO6rzWuWTmHm0w0A5m4giPx35BWd7nJ5h0mq2Cfk0ueHlBQo/ICyfJA==", "dependencies": { - "Microsoft.EntityFrameworkCore.Relational": "8.0.6", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.6" + "Microsoft.EntityFrameworkCore.Relational": "8.0.14", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.14" } }, "Microsoft.Extensions.FileProviders.Abstractions": { @@ -466,46 +460,46 @@ }, "Microsoft.Extensions.Hosting.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "resolved": "8.0.1", + "contentHash": "nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "resolved": "8.0.1", + "contentHash": "4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==", "dependencies": { - "Microsoft.Extensions.DependencyInjection": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0" + "Microsoft.Extensions.DependencyInjection": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Logging.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging.Configuration": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "ixXXV0G/12g6MXK65TLngYN9V5hQQRuV+fZi882WIoVJT7h5JvoYoxTEwCgdqwLjSneqh1O+66gM8sMr9z/rsQ==", + "resolved": "8.0.1", + "contentHash": "QWwTrsgOnJMmn+XUslm8D2H1n3PkP/u/v52FODtyBc/k4W9r3i2vcXXeeX/upnzllJYRRbrzVzT0OclfNJtBJA==", "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.Configuration.Binder": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.Configuration.Binder": "8.0.2", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0" } }, @@ -537,49 +531,49 @@ }, "Microsoft.IdentityModel.Abstractions": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "cfPUWdjigLIRIJSKz3uaZxShgf86RVDXHC1VEEchj1gnY25akwPYpbrfSoIGDCqA9UmOMdlctq411+2pAViFow==" + "resolved": "7.1.2", + "contentHash": "33eTIA2uO/L9utJjZWbKsMSVsQf7F8vtd6q5mQX7ZJzNvCpci5fleD6AeANGlbbb7WX7XKxq9+Dkb5e3GNDrmQ==" }, "Microsoft.IdentityModel.JsonWebTokens": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "vxjHVZbMKD3rVdbvKhzAW+7UiFrYToUVm3AGmYfKSOAwyhdLl/ELX1KZr+FaLyyS5VReIzWRWJfbOuHM9i6ywg==", + "resolved": "7.1.2", + "contentHash": "cloLGeZolXbCJhJBc5OC05uhrdhdPL6MWHuVUnkkUvPDeK7HkwThBaLZ1XjBQVk9YhxXE2OvHXnKi0PLleXxDg==", "dependencies": { - "Microsoft.IdentityModel.Tokens": "7.0.3" + "Microsoft.IdentityModel.Tokens": "7.1.2" } }, "Microsoft.IdentityModel.Logging": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "b6GbGO+2LOTBEccHhqoJsOsmemG4A/MY+8H0wK/ewRhiG+DCYwEnucog1cSArPIY55zcn+XdZl0YEiUHkpDISQ==", + "resolved": "7.1.2", + "contentHash": "YCxBt2EeJP8fcXk9desChkWI+0vFqFLvBwrz5hBMsoh0KJE6BC66DnzkdzkJNqMltLromc52dkdT206jJ38cTw==", "dependencies": { - "Microsoft.IdentityModel.Abstractions": "7.0.3" + "Microsoft.IdentityModel.Abstractions": "7.1.2" } }, "Microsoft.IdentityModel.Protocols": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "BtwR+tctBYhPNygyZmt1Rnw74GFrJteW+1zcdIgyvBCjkek6cNwPPqRfdhzCv61i+lwyNomRi8+iI4QKd4YCKA==", + "resolved": "7.1.2", + "contentHash": "SydLwMRFx6EHPWJ+N6+MVaoArN1Htt92b935O3RUWPY1yUF63zEjvd3lBu79eWdZUwedP8TN2I5V9T3nackvIQ==", "dependencies": { - "Microsoft.IdentityModel.Logging": "7.0.3", - "Microsoft.IdentityModel.Tokens": "7.0.3" + "Microsoft.IdentityModel.Logging": "7.1.2", + "Microsoft.IdentityModel.Tokens": "7.1.2" } }, "Microsoft.IdentityModel.Protocols.OpenIdConnect": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "W97TraHApDNArLwpPcXfD+FZH7njJsfEwZE9y9BoofeXMS8H0LBBobz0VOmYmMK4mLdOKxzN7SFT3Ekg0FWI3Q==", + "resolved": "7.1.2", + "contentHash": "6lHQoLXhnMQ42mGrfDkzbIOR3rzKM1W1tgTeMPLgLCqwwGw0d96xFi/UiX/fYsu7d6cD5MJiL3+4HuI8VU+sVQ==", "dependencies": { - "Microsoft.IdentityModel.Protocols": "7.0.3", - "System.IdentityModel.Tokens.Jwt": "7.0.3" + "Microsoft.IdentityModel.Protocols": "7.1.2", + "System.IdentityModel.Tokens.Jwt": "7.1.2" } }, "Microsoft.IdentityModel.Tokens": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "wB+LlbDjhnJ98DULjmFepqf9eEMh/sDs6S6hFh68iNRHmwollwhxk+nbSSfpA5+j+FbRyNskoaY4JsY1iCOKCg==", + "resolved": "7.1.2", + "contentHash": "oICJMqr3aNEDZOwnH5SK49bR6Z4aX0zEAnOLuhloumOSuqnNq+GWBdQyrgILnlcT5xj09xKCP/7Y7gJYB+ls/g==", "dependencies": { - "Microsoft.IdentityModel.Logging": "7.0.3" + "Microsoft.IdentityModel.Logging": "7.1.2" } }, "Microsoft.NETCore.Platforms": { @@ -589,23 +583,23 @@ }, "Microsoft.OpenApi": { "type": "Transitive", - "resolved": "1.6.14", - "contentHash": "tTaBT8qjk3xINfESyOPE2rIellPvB7qpVqiWiyA/lACVvz+xOGiXhFUfohcx82NLbi5avzLW0lx+s6oAqQijfw==" + "resolved": "1.6.23", + "contentHash": "tZ1I0KXnn98CWuV8cpI247A17jaY+ILS9vvF7yhI0uPPEqF4P1d7BWL5Uwtel10w9NucllHB3nTkfYTAcHAh8g==" }, "Microsoft.TestPlatform.ObjectModel": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "KkwhjQevuDj0aBRoPLY6OLAhGqbPUEBuKLbaCs0kUVw29qiOYncdORd4mLVJbn9vGZ7/iFGQ/+AoJl0Tu5Umdg==", + "resolved": "17.13.0", + "contentHash": "bt0E0Dx+iqW97o4A59RCmUmz/5NarJ7LRL+jXbSHod72ibL5XdNm1Ke+UO5tFhBG4VwHLcSjqq9BUSblGNWamw==", "dependencies": { "System.Reflection.Metadata": "1.6.0" } }, "Microsoft.TestPlatform.TestHost": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "LWpMdfqhHvcUkeMCvNYJO8QlPLlYz9XPPb+ZbaXIKhdmjAV0wqTSrTiW5FLaf7RRZT50AQADDOYMOe0HxDxNgA==", + "resolved": "17.13.0", + "contentHash": "9GGw08Dc3AXspjekdyTdZ/wYWFlxbgcF0s7BKxzVX+hzAwpifDOdxM+ceVaaJSQOwqt3jtuNlHn3XTpKUS9x9Q==", "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "17.10.0", + "Microsoft.TestPlatform.ObjectModel": "17.13.0", "Newtonsoft.Json": "13.0.1" } }, @@ -632,73 +626,73 @@ }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "jchWPuXJC4N9g1jZ7ZPSfbDSBfMmIgFw5w9VqAT5A9USdE/10IMT83wL48KkTbR7eHdphghe06iGKk7IPhYweA==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "21.0.2" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Messaging.RabbitMQ": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "/tj7IO/SHYXNRfxh7iIMms9TurhtCIozZp5lDFvd/WkPgKWZyyyZH8wxkNb9r7jIh/vXkrGJcPCxR30uoET+7g==", + "resolved": "2.0.4", + "contentHash": "tmEERdnqJq1STVGx30+wVyj7AtvtT8K2j/59lSiZ7k58ZdRku601Gs6k1KZ/sfGeobCjaB4gI7GROxK+lN6gbg==", "dependencies": { - "Monai.Deploy.Messaging": "2.0.3", - "Polly": "8.4.0", + "Monai.Deploy.Messaging": "2.0.4", + "Polly": "8.5.2", "RabbitMQ.Client": "6.8.1" } }, "Monai.Deploy.Security": { "type": "Transitive", - "resolved": "1.0.0", - "contentHash": "q0dQiOpOoHX4a3XkueqFRx51WOrQpW1Lwj7e4oqI6aOBeUlA9CPMdZ4+4BlemXc/1A5IClrPugp/owZ1NJ2Wxg==", + "resolved": "1.0.1", + "contentHash": "GrGj/addv+V5MgZuHBXV68M9PtyzrPlvHibyaHPQq602wtK4CYqPGR5P4VJgM2ZuiW89vEKbhd07sxTFkG9Muw==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", - "Microsoft.AspNetCore.Authentication.JwtBearer": "8.0.0", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.AspNetCore.Authentication.JwtBearer": "8.0.14", "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Configuration": "8.0.0" + "Microsoft.Extensions.Logging": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.3", + "Microsoft.Extensions.Logging.Configuration": "8.0.1" } }, "Monai.Deploy.Storage": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "ceVSHBPDMxWV7C6TLBoJmJt3X0RQmdPnm+9NU17Zs0TGE58QvSEHn4GJODtK9+ncgUJICjBhPFcNHV40ybEepQ==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.105", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", - "Monai.Deploy.Storage.S3Policy": "1.0.1", - "System.IO.Abstractions": "21.0.2" + "AWSSDK.SecurityToken": "3.7.401.68", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", + "Monai.Deploy.Storage.S3Policy": "1.0.2", + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage.MinIO": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "7wJ0ozvVVv8xPxQahHm0GgBKl0ZKTOJnMVbRXQW1QoO3pijlsXGZux310gkDEruDZSjZMS4tw6+6eKDozHfbfA==", + "resolved": "1.0.2", + "contentHash": "H73iUS64UwZXK8ZxNUc3DvokEcptpcoYgY+FMJGlotCffGhqrK8iJ18THR0gg9Io5UgIv24mdu1jbUn/Cz2rhA==", "dependencies": { "Minio": "6.0.2", - "Monai.Deploy.Storage": "1.0.1", - "Monai.Deploy.Storage.S3Policy": "1.0.1" + "Monai.Deploy.Storage": "1.0.2", + "Monai.Deploy.Storage.S3Policy": "1.0.2" } }, "Monai.Deploy.Storage.S3Policy": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "mgLlLRphh+vrVKen72jfEzBcoOhAzCjavGMUzWIjIFh5avmb2RJNbQERLSISOCjWnqPscc/xSPKFUUpLMOLdYw==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, "MongoDB.Bson": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "xQx/qtC2nu9oGiyNqAwfiDpUMweLi0nID677cyKykpwmj5AVMrnd//UwmcmuX95178DeY6rf7cjmA613TQXPiA==", + "resolved": "2.30.0", + "contentHash": "Gg0TQUT3IEntcqdug5a9P6d8iwL5CqOpQjVBCq1hxTbkjxdGdY6a2CPv7II44AO9GYUnORYsS6dDME2b7aqYyg==", "dependencies": { "System.Memory": "4.5.5", "System.Runtime.CompilerServices.Unsafe": "5.0.0" @@ -706,25 +700,25 @@ }, "MongoDB.Driver": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "dMqnZTV6MuvoEI4yFtSvKJdAoN6NeyAEvG8aoxnrLIVd7bR84QxLgpsM1nhK17qkOcIx/IrpMIfrvp5iMnYGBg==", + "resolved": "2.30.0", + "contentHash": "BCG8cNF0+U3h5f/O9fu3ktrYhoESBDems1w06PExfYrn2KjHBHCBdvBRY1cIbysnZVjQAJjGtFV9XgW+hXt7Hg==", "dependencies": { "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "2.25.0", - "MongoDB.Driver.Core": "2.25.0", - "MongoDB.Libmongocrypt": "1.8.2" + "MongoDB.Bson": "2.30.0", + "MongoDB.Driver.Core": "2.30.0", + "MongoDB.Libmongocrypt": "1.12.0" } }, "MongoDB.Driver.Core": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "oN4nLgO5HQEThTg/zqeoHqaO2+q64DBVb4r7BvhaFb0p0TM9jZKnCKvh1EA8d9E9swIz0CgvMrvL1mPyRCZzag==", + "resolved": "2.30.0", + "contentHash": "oepDgu24lo44SljuHmIQ99x6jHISnMC4tLfzQGniQg39xiMD8nxalm1HM9RDZcuZbbWa4F6YLt2AIhWkny3XWA==", "dependencies": { "AWSSDK.SecurityToken": "3.7.100.14", "DnsClient": "1.6.1", "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "2.25.0", - "MongoDB.Libmongocrypt": "1.8.2", + "MongoDB.Bson": "2.30.0", + "MongoDB.Libmongocrypt": "1.12.0", "SharpCompress": "0.30.1", "Snappier": "1.0.0", "System.Buffers": "4.5.1", @@ -733,8 +727,8 @@ }, "MongoDB.Libmongocrypt": { "type": "Transitive", - "resolved": "1.8.2", - "contentHash": "z/8JCULSHM1+mzkau0ivIkU9kIn8JEFFSkmYTSaMaWMMHt96JjUtMKuXxeGNGSnHZ5290ZPKIlQfjoWFk2sKog==" + "resolved": "1.12.0", + "contentHash": "B1X51jrtNacKvxKoaqWeknYeJfQS5aWf6BmVLT5JZerz3AUXFzv8edPskJYqBc3kLy1J2PWzMqqsnyb9g8FtcA==" }, "Mono.TextTemplating": { "type": "Transitive", @@ -751,39 +745,39 @@ }, "NLog": { "type": "Transitive", - "resolved": "5.3.2", - "contentHash": "cQRQZuDMjSyMe9EQBnI9v55YAMMz8GAfFd6fFJ6tc/kXnG7Hze8p1I8MgvWSBG6E36wA8vSxRrlm8uSIG+SENg==" + "resolved": "5.4.0", + "contentHash": "LwMcGSW3soF3/SL68rlJN3Eh3ktrAPycC3zZR/07OYBPraZUu0bygEC7kIN10lUQgMXT4s84Fi1chglGdGrQEg==" }, "NLog.Extensions.Logging": { "type": "Transitive", - "resolved": "5.3.11", - "contentHash": "C3Rg6jmOkM7fNBX9jAoVlYzOwsrxdQzl9sYDK1EpRc7RCdjgs8FC9ivJCSsCu/m4l0w83xiTNz7Y1CzmD3BwZg==", + "resolved": "5.4.0", + "contentHash": "5T19INfbzRywZpyBGoQChsB/R7eHW9hR4Ml9O22NRjJpfltGIJ+rsoCcjwr2/V/E6i3/eXLTQwRAeDMICjWpTA==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", "Microsoft.Extensions.Logging": "8.0.0", - "NLog": "5.3.2" + "NLog": "5.4.0" } }, "NLog.Web.AspNetCore": { "type": "Transitive", - "resolved": "5.3.11", - "contentHash": "yGVMYeeMh1v/DZELN8XMEZYg27/w7O0ypcwaD1+cHLf4yI8zZOM0xS57a8gCBV4QCXegN15Upld+9YzS5M1VvA==", + "resolved": "5.4.0", + "contentHash": "Le6rbipSqeGVygbLGgRwZNMsbjJ+YnoAMJdZVhgjQimXwmYbDNkSswK6Mb32bKoC5aIg5mhw+hpAmgWdegs4Eg==", "dependencies": { - "NLog.Extensions.Logging": "5.3.11" + "NLog.Extensions.Logging": "5.4.0" } }, "Polly": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "z2EeUutuy49jBQyZ5s2FUuTCGx3GCzJ0cJ2HbjWwks94TsC6bKTtAHKBkMZOa/DyYRl5yIX7MshvMTWl1J6RNg==", + "resolved": "8.5.2", + "contentHash": "vbXsGgkG86nG+TOwY+SmtrGrRHmHH0DQaxtILx//d3Dz/ocJ8izSNYzdvU2gEtWa/LDD8zJLvD3HdjEkdlvkhg==", "dependencies": { - "Polly.Core": "8.4.0" + "Polly.Core": "8.5.2" } }, "Polly.Core": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "3AZxuP//pxOeBo9tQs7/tz4Z5TTbu4BYfjpaXZD0JYKJo98ngN9TMUz1nybh4k0ykWkMBpGZALV/AmVIE3ew7A==" + "resolved": "8.5.2", + "contentHash": "1MJKdxv4zwDmiWvYvVN24DsrWUfgQ4F83voH8bhbtLMdPuGy8CfTUzsgQhvyrl1a7hrM6f/ydwLVdVUI0xooUw==" }, "RabbitMQ.Client": { "type": "Transitive", @@ -836,35 +830,35 @@ }, "Swashbuckle.AspNetCore": { "type": "Transitive", - "resolved": "6.6.2", - "contentHash": "+NB4UYVYN6AhDSjW0IJAd1AGD8V33gemFNLPaxKTtPkHB+HaKAKf9MGAEUPivEWvqeQfcKIw8lJaHq6LHljRuw==", + "resolved": "8.0.0", + "contentHash": "K9FzGTxmwfD+7sVf/FTq/TZFHBTXcROgdcg7gLFwKwgvXwaqTtjGVdam27j0kYfgZZyWlOKr+abmtyd2nAd5eA==", "dependencies": { "Microsoft.Extensions.ApiDescription.Server": "6.0.5", - "Swashbuckle.AspNetCore.Swagger": "6.6.2", - "Swashbuckle.AspNetCore.SwaggerGen": "6.6.2", - "Swashbuckle.AspNetCore.SwaggerUI": "6.6.2" + "Swashbuckle.AspNetCore.Swagger": "8.0.0", + "Swashbuckle.AspNetCore.SwaggerGen": "8.0.0", + "Swashbuckle.AspNetCore.SwaggerUI": "8.0.0" } }, "Swashbuckle.AspNetCore.Swagger": { "type": "Transitive", - "resolved": "6.6.2", - "contentHash": "ovgPTSYX83UrQUWiS5vzDcJ8TEX1MAxBgDFMK45rC24MorHEPQlZAHlaXj/yth4Zf6xcktpUgTEBvffRQVwDKA==", + "resolved": "8.0.0", + "contentHash": "+8Y4pVTWbnzotIk6d6rcwsHGpCchPDqqrvYkyGlI3go+pFaKM+4eX30iCyI0hvr0RMtObJCFhK6aDtlQFbEF1g==", "dependencies": { - "Microsoft.OpenApi": "1.6.14" + "Microsoft.OpenApi": "1.6.23" } }, "Swashbuckle.AspNetCore.SwaggerGen": { "type": "Transitive", - "resolved": "6.6.2", - "contentHash": "zv4ikn4AT1VYuOsDCpktLq4QDq08e7Utzbir86M5/ZkRaLXbCPF11E1/vTmOiDzRTl0zTZINQU2qLKwTcHgfrA==", + "resolved": "8.0.0", + "contentHash": "skCeIQ93yMcUm1PQby5qitFM6KLIlLMj4/i8JHy86x2OFzxTNaaas2kUg6rNV3JvucFvYCNyImg7NMtZHErSzQ==", "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "6.6.2" + "Swashbuckle.AspNetCore.Swagger": "8.0.0" } }, "Swashbuckle.AspNetCore.SwaggerUI": { "type": "Transitive", - "resolved": "6.6.2", - "contentHash": "mBBb+/8Hm2Q3Wygag+hu2jj69tZW5psuv0vMRXY07Wy+Rrj40vRP8ZTbKBhs91r45/HXT4aY4z0iSBYx1h6JvA==" + "resolved": "8.0.0", + "contentHash": "IMqmgclFiZL2QIfopOmWYofZzckrl+SdMt1h4mKC0jc94F+uzt3IHA3YFC0CGlwBqTTSnxHqNUKomNTeAhZbYA==" }, "System.Buffers": { "type": "Transitive", @@ -932,11 +926,6 @@ "System.Composition.Runtime": "6.0.0" } }, - "System.Diagnostics.DiagnosticSource": { - "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" - }, "System.Diagnostics.EventLog": { "type": "Transitive", "resolved": "6.0.0", @@ -944,20 +933,20 @@ }, "System.IdentityModel.Tokens.Jwt": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "caEe+OpQNYNiyZb+DJpUVROXoVySWBahko2ooNfUcllxa9ZQUM8CgM/mDjP6AoFn6cQU9xMmG+jivXWub8cbGg==", + "resolved": "7.1.2", + "contentHash": "Thhbe1peAmtSBFaV/ohtykXiZSOkx59Da44hvtWfIMFofDA3M3LaVyjstACf2rKGn4dEDR2cUpRAZ0Xs/zB+7Q==", "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "7.0.3", - "Microsoft.IdentityModel.Tokens": "7.0.3" + "Microsoft.IdentityModel.JsonWebTokens": "7.1.2", + "Microsoft.IdentityModel.Tokens": "7.1.2" } }, "System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ewYQGK0kzOpfiYCF0P0nqPAnKqGhqiXAWDFeMtQtwJyERA2s7nLx7KEALwDvIFjZvX6677IsPREoLIU9oBOQvA==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "System.IO.Hashing": { @@ -1009,11 +998,8 @@ }, "System.Text.Encoding.CodePages": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "6.0.1", + "contentHash": "OV04vEWTSDXzaAJCjylOIdjB7Z7QTYQcz4/ATZSiG8PLkZLsbtaADj0Ydj4FdFnqq4PAwEA7SuILE+6ka4cn6A==" }, "System.Text.Encodings.Web": { "type": "Transitive", @@ -1022,11 +1008,8 @@ }, "System.Text.Json": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", - "dependencies": { - "System.Text.Encodings.Web": "8.0.0" - } + "resolved": "8.0.5", + "contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==" }, "System.Threading.Channels": { "type": "Transitive", @@ -1035,24 +1018,24 @@ }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ViPtOy4lAlmWq9GDEwiE5C9XSgDGHUWMRvVvruI38pbikUXkgu7xnCVW7PYdQOjS+iWWcQHt+U7oyPedfnWSHg==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.TestingHelpers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "4s6EC7rGSlNPqC9/FOmYavFTjetO7zDBnc0H8Hyb8ABJll2UgeC7UvdNLwx28/hhUE8AvUJmwamjAII6LJWIQA==", + "resolved": "21.3.1", + "contentHash": "XP7tiKVtnOP+jXWsRqgc7WCV2tsoolVnxSNUJXwdWmHCpLMsVlZXRag7dMynnNEQQB9XEJx25RteqN5APCnjag==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ii6Xgru3ozRaLezwE/lKAPTdE3ES+S3P3ul+QrMxIP10GN+LF0JAi4aWqb8lxzEAwBMSAeK/QipEpVt4KYlTOg==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "xunit.abstractions": { @@ -1104,8 +1087,8 @@ "type": "Project", "dependencies": { "DotNext.Threading": "[5.5.0, )", - "HL7-dotnetcore": "[2.36.0, )", - "Microsoft.EntityFrameworkCore.Design": "[8.0.6, )", + "HL7-dotnetcore": "[2.39.1, )", + "Microsoft.EntityFrameworkCore.Design": "[8.0.14, )", "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", @@ -1114,37 +1097,37 @@ "Monai.Deploy.InformaticsGateway.Database.EntityFramework": "[1.0.0, )", "Monai.Deploy.InformaticsGateway.DicomWeb.Client": "[1.0.0, )", "Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution": "[1.0.0, )", - "Monai.Deploy.Messaging.RabbitMQ": "[2.0.3, )", - "Monai.Deploy.Security": "[1.0.0, )", - "Monai.Deploy.Storage.MinIO": "[1.0.1, )", - "NLog.Web.AspNetCore": "[5.3.11, )", - "Swashbuckle.AspNetCore": "[6.6.2, )" + "Monai.Deploy.Messaging.RabbitMQ": "[2.0.4, )", + "Monai.Deploy.Security": "[1.0.1, )", + "Monai.Deploy.Storage.MinIO": "[1.0.2, )", + "NLog.Web.AspNetCore": "[5.4.0, )", + "Swashbuckle.AspNetCore": "[8.0.0, )" } }, "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "HL7-dotnetcore": "[2.36.0, )", + "HL7-dotnetcore": "[2.39.1, )", "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.6, )", + "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.14, )", "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Messaging.RabbitMQ": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )", - "fo-dicom": "[5.1.2, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Messaging.RabbitMQ": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )", + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.informaticsgateway.client.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )" + "Ardalis.GuardClauses": "[4.6.0, )" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )", - "System.IO.Abstractions": "[21.0.2, )" + "Ardalis.GuardClauses": "[4.6.0, )", + "System.IO.Abstractions": "[21.3.1, )" } }, "monai.deploy.informaticsgateway.configuration": { @@ -1157,9 +1140,9 @@ "monai.deploy.informaticsgateway.database": { "type": "Project", "dependencies": { - "AspNetCore.HealthChecks.MongoDb": "[8.0.1, )", - "Microsoft.EntityFrameworkCore.Tools": "[8.0.6, )", - "Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore": "[8.0.6, )", + "AspNetCore.HealthChecks.MongoDb": "[8.1.0, )", + "Microsoft.EntityFrameworkCore.Tools": "[8.0.14, )", + "Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore": "[8.0.14, )", "Microsoft.Extensions.Options.ConfigurationExtensions": "[8.0.0, )", "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", @@ -1173,55 +1156,55 @@ "dependencies": { "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", - "NLog": "[5.3.2, )" + "NLog": "[5.4.0, )" } }, "monai.deploy.informaticsgateway.database.entityframework": { "type": "Project", "dependencies": { - "Microsoft.EntityFrameworkCore": "[8.0.6, )", - "Microsoft.EntityFrameworkCore.Design": "[8.0.6, )", - "Microsoft.EntityFrameworkCore.Sqlite": "[8.0.6, )", - "Microsoft.Extensions.Configuration.FileExtensions": "[8.0.0, )", - "Microsoft.Extensions.Configuration.Json": "[8.0.0, )", + "Microsoft.EntityFrameworkCore": "[8.0.14, )", + "Microsoft.EntityFrameworkCore.Design": "[8.0.14, )", + "Microsoft.EntityFrameworkCore.Sqlite": "[8.0.14, )", + "Microsoft.Extensions.Configuration.FileExtensions": "[8.0.1, )", + "Microsoft.Extensions.Configuration.Json": "[8.0.1, )", "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", "Monai.Deploy.InformaticsGateway.Database.Api": "[1.0.0, )", - "Polly": "[8.4.0, )" + "Polly": "[8.5.2, )" } }, "monai.deploy.informaticsgateway.database.mongodb": { "type": "Project", "dependencies": { "Monai.Deploy.InformaticsGateway.Database.Api": "[1.0.0, )", - "MongoDB.Driver": "[2.25.0, )", - "Polly": "[8.4.0, )" + "MongoDB.Driver": "[2.30.0, )", + "Polly": "[8.5.2, )" } }, "monai.deploy.informaticsgateway.dicomweb.client": { "type": "Project", "dependencies": { "Monai.Deploy.InformaticsGateway.Client.Common": "[1.0.0, )", - "fo-dicom": "[5.1.2, )" + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.informaticsgateway.plugins.remoteappexecution": { "type": "Project", "dependencies": { - "Microsoft.EntityFrameworkCore": "[8.0.6, )", - "Microsoft.EntityFrameworkCore.Design": "[8.0.6, )", - "Microsoft.EntityFrameworkCore.Relational": "[8.0.6, )", - "Microsoft.EntityFrameworkCore.Sqlite": "[8.0.6, )", + "Microsoft.EntityFrameworkCore": "[8.0.14, )", + "Microsoft.EntityFrameworkCore.Design": "[8.0.14, )", + "Microsoft.EntityFrameworkCore.Relational": "[8.0.14, )", + "Microsoft.EntityFrameworkCore.Sqlite": "[8.0.14, )", "Microsoft.Extensions.Configuration": "[8.0.0, )", - "Microsoft.Extensions.Configuration.FileExtensions": "[8.0.0, )", - "Microsoft.Extensions.Configuration.Json": "[8.0.0, )", + "Microsoft.Extensions.Configuration.FileExtensions": "[8.0.1, )", + "Microsoft.Extensions.Configuration.Json": "[8.0.1, )", "Microsoft.Extensions.Options.ConfigurationExtensions": "[8.0.0, )", "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", "Monai.Deploy.InformaticsGateway.Database.Api": "[1.0.0, )", - "MongoDB.Driver": "[2.25.0, )", - "NLog": "[5.3.2, )", - "Polly": "[8.4.0, )" + "MongoDB.Driver": "[2.30.0, )", + "NLog": "[5.4.0, )", + "Polly": "[8.5.2, )" } }, "monai.deploy.informaticsgateway.test.plugins": { diff --git a/src/InformaticsGateway/packages.lock.json b/src/InformaticsGateway/packages.lock.json index 0ee1479d..e96acb6e 100644 --- a/src/InformaticsGateway/packages.lock.json +++ b/src/InformaticsGateway/packages.lock.json @@ -14,112 +14,112 @@ }, "HL7-dotnetcore": { "type": "Direct", - "requested": "[2.36.0, )", - "resolved": "2.36.0", - "contentHash": "N1HLMeIqYuY+4O69ItgZJoDBnnpNkK5N2pClceTJ2nFJxsP48iCsA4iz3tm43Yszi4r/vaThoc3UoLBfGP3vKw==" + "requested": "[2.39.1, )", + "resolved": "2.39.1", + "contentHash": "xbgykLlAr644SfYY2oxnpYYto+JFYLuUHt00hRTlhpB+5DiFC2oVSVRA+8yyq/lmkjTNidtTbN9nyK0ft4DSfw==" }, "Microsoft.EntityFrameworkCore.Design": { "type": "Direct", - "requested": "[8.0.6, )", - "resolved": "8.0.6", - "contentHash": "4OT+mH+8EB4Kfn1ENpDx2Ssx459j200gvdhDOKq5lkHmHzkRpmEDKS5GfqaLZvBLJKWu1FVGQ7Wnczcjb0hX4g==", + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "ncCvbJYGXK7eSOVqfQNXLaxMWKGaKSYX1VJZjyJXg3IxxmF50B8p/isprgrVLR+SlQwTG1lmhPAPn0dOvCqlrw==", "dependencies": { "Humanizer.Core": "2.14.1", "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0", - "Microsoft.EntityFrameworkCore.Relational": "8.0.6", - "Microsoft.Extensions.DependencyModel": "8.0.0", + "Microsoft.EntityFrameworkCore.Relational": "8.0.14", + "Microsoft.Extensions.DependencyModel": "8.0.2", "Mono.TextTemplating": "2.2.1" } }, "Monai.Deploy.Messaging.RabbitMQ": { "type": "Direct", - "requested": "[2.0.3, )", - "resolved": "2.0.3", - "contentHash": "/tj7IO/SHYXNRfxh7iIMms9TurhtCIozZp5lDFvd/WkPgKWZyyyZH8wxkNb9r7jIh/vXkrGJcPCxR30uoET+7g==", + "requested": "[2.0.4, )", + "resolved": "2.0.4", + "contentHash": "tmEERdnqJq1STVGx30+wVyj7AtvtT8K2j/59lSiZ7k58ZdRku601Gs6k1KZ/sfGeobCjaB4gI7GROxK+lN6gbg==", "dependencies": { - "Monai.Deploy.Messaging": "2.0.3", - "Polly": "8.4.0", + "Monai.Deploy.Messaging": "2.0.4", + "Polly": "8.5.2", "RabbitMQ.Client": "6.8.1" } }, "Monai.Deploy.Security": { "type": "Direct", - "requested": "[1.0.0, )", - "resolved": "1.0.0", - "contentHash": "q0dQiOpOoHX4a3XkueqFRx51WOrQpW1Lwj7e4oqI6aOBeUlA9CPMdZ4+4BlemXc/1A5IClrPugp/owZ1NJ2Wxg==", + "requested": "[1.0.1, )", + "resolved": "1.0.1", + "contentHash": "GrGj/addv+V5MgZuHBXV68M9PtyzrPlvHibyaHPQq602wtK4CYqPGR5P4VJgM2ZuiW89vEKbhd07sxTFkG9Muw==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", - "Microsoft.AspNetCore.Authentication.JwtBearer": "8.0.0", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.AspNetCore.Authentication.JwtBearer": "8.0.14", "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Configuration": "8.0.0" + "Microsoft.Extensions.Logging": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.3", + "Microsoft.Extensions.Logging.Configuration": "8.0.1" } }, "Monai.Deploy.Storage.MinIO": { "type": "Direct", - "requested": "[1.0.1, )", - "resolved": "1.0.1", - "contentHash": "7wJ0ozvVVv8xPxQahHm0GgBKl0ZKTOJnMVbRXQW1QoO3pijlsXGZux310gkDEruDZSjZMS4tw6+6eKDozHfbfA==", + "requested": "[1.0.2, )", + "resolved": "1.0.2", + "contentHash": "H73iUS64UwZXK8ZxNUc3DvokEcptpcoYgY+FMJGlotCffGhqrK8iJ18THR0gg9Io5UgIv24mdu1jbUn/Cz2rhA==", "dependencies": { "Minio": "6.0.2", - "Monai.Deploy.Storage": "1.0.1", - "Monai.Deploy.Storage.S3Policy": "1.0.1" + "Monai.Deploy.Storage": "1.0.2", + "Monai.Deploy.Storage.S3Policy": "1.0.2" } }, "NLog.Web.AspNetCore": { "type": "Direct", - "requested": "[5.3.11, )", - "resolved": "5.3.11", - "contentHash": "yGVMYeeMh1v/DZELN8XMEZYg27/w7O0ypcwaD1+cHLf4yI8zZOM0xS57a8gCBV4QCXegN15Upld+9YzS5M1VvA==", + "requested": "[5.4.0, )", + "resolved": "5.4.0", + "contentHash": "Le6rbipSqeGVygbLGgRwZNMsbjJ+YnoAMJdZVhgjQimXwmYbDNkSswK6Mb32bKoC5aIg5mhw+hpAmgWdegs4Eg==", "dependencies": { - "NLog.Extensions.Logging": "5.3.11" + "NLog.Extensions.Logging": "5.4.0" } }, "Swashbuckle.AspNetCore": { "type": "Direct", - "requested": "[6.6.2, )", - "resolved": "6.6.2", - "contentHash": "+NB4UYVYN6AhDSjW0IJAd1AGD8V33gemFNLPaxKTtPkHB+HaKAKf9MGAEUPivEWvqeQfcKIw8lJaHq6LHljRuw==", + "requested": "[8.0.0, )", + "resolved": "8.0.0", + "contentHash": "K9FzGTxmwfD+7sVf/FTq/TZFHBTXcROgdcg7gLFwKwgvXwaqTtjGVdam27j0kYfgZZyWlOKr+abmtyd2nAd5eA==", "dependencies": { "Microsoft.Extensions.ApiDescription.Server": "6.0.5", - "Swashbuckle.AspNetCore.Swagger": "6.6.2", - "Swashbuckle.AspNetCore.SwaggerGen": "6.6.2", - "Swashbuckle.AspNetCore.SwaggerUI": "6.6.2" + "Swashbuckle.AspNetCore.Swagger": "8.0.0", + "Swashbuckle.AspNetCore.SwaggerGen": "8.0.0", + "Swashbuckle.AspNetCore.SwaggerUI": "8.0.0" } }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AspNetCore.HealthChecks.MongoDb": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "/IZb7dDJBalyF7eE1/Ql5zFcTqVSAejYIPpzMThzgTj049GhvuYWdMJsMf+Y2+u1vUlG0vy0PKE763XdIuaoFg==", + "resolved": "8.1.0", + "contentHash": "NuVDrj7UXBVniePh6JnuM8ryZRWdOIGOBes3owg2WQV/1NPntpWqX/DYaP6SBduHULUp8XRbwAui8qKQAW4SDA==", "dependencies": { "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", - "MongoDB.Driver": "2.22.0" + "MongoDB.Driver": "2.28.0" } }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.304.15", - "contentHash": "XLfl4/wuTDWXH73FjGUx5P6Jf6FNLTlyVwWvQ0b/WyBOtZVJxPlCKUTYDn06VdqcLGg3uPP6FKJqnplKsnMHMw==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.105", - "contentHash": "axqpqdA4QZvHzEdGDLk5/IpPQsUTIcnVDulz4uyE+UEeYAHpFcp/BNQxmmIU4Gdv0G5KwQWKiaUaZPuLVN0Esg==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.304.15, 4.0.0)" + "AWSSDK.Core": "[3.7.402.25, 4.0.0)" } }, "CommunityToolkit.HighPerformance": { "type": "Transitive", - "resolved": "8.2.2", - "contentHash": "+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==" + "resolved": "8.3.2", + "contentHash": "1Os81ua0FmIOtiSgOk5C1KBraQ3SDfxs/7BG4qDagm48nGplr//lAVqLH9I2TLDVqRFdhqTUaEITFA5Ho/Ovkw==" }, "DnsClient": { "type": "Transitive", @@ -139,19 +139,19 @@ }, "fo-dicom": { "type": "Transitive", - "resolved": "5.1.2", - "contentHash": "2lM76Vq+GRdwyY3BQiUJ+V6yxdFiOG4ysLJC7qNTxLsq/1pr5ZTTXiIzWQa+uJ0MuKnzzFogV5+meDflsyjs2g==", + "resolved": "5.2.1", + "contentHash": "Oa6raonOj/Xm+a1j3O89OlUXJIF55jLAKjCuXKINYJMJ+hJ/9Al1YOxPs1hut8DBKvHbgYtgdRFtqGNS+Qt6Uw==", "dependencies": { - "CommunityToolkit.HighPerformance": "8.2.2", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "CommunityToolkit.HighPerformance": "8.3.2", + "Microsoft.Bcl.AsyncInterfaces": "8.0.0", "Microsoft.Bcl.HashCode": "1.1.1", "Microsoft.Extensions.DependencyInjection": "6.0.1", "Microsoft.Extensions.Logging": "6.0.0", "Microsoft.Extensions.Options": "6.0.0", "System.Buffers": "4.5.1", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "6.0.9", + "System.Text.Encoding.CodePages": "6.0.1", + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.5", "System.Threading.Channels": "6.0.0" } }, @@ -167,16 +167,16 @@ }, "Microsoft.AspNetCore.Authentication.JwtBearer": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "rwxaZYHips5M9vqxRkGfJthTx+Ws4O4yCuefn17J371jL3ouC5Ker43h2hXb5yd9BMnImE9rznT75KJHm6bMgg==", + "resolved": "8.0.14", + "contentHash": "e19jmWJAQucbPYk3/fihJMDCYfv6CO+Qwp34pOehUSCbaHROw6FZ551SN1D0s9Btl0U/QHfuwFq6Z8Oa2ktE6g==", "dependencies": { - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.0.3" + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.1.2" } }, "Microsoft.Bcl.AsyncInterfaces": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==" + "resolved": "8.0.0", + "contentHash": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==" }, "Microsoft.Bcl.HashCode": { "type": "Transitive", @@ -234,67 +234,67 @@ }, "Microsoft.Data.Sqlite.Core": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "umhZ0ZF2RI81rGFTnYmCxI+Euj4Aqe/6Y4+8CxN9OVJNGDNIqB5laJ3wxQTU8zXCcm2k9F7FL+/6RVoOT4z1Fw==", + "resolved": "8.0.14", + "contentHash": "MT/9fCazlL4T10BwCQCxvUXOmtU4rR1qDl2mpePFhmuXONafUjXUf8FH94IR79ISxrGVHxsOWvwGzgKi6RSE/g==", "dependencies": { "SQLitePCLRaw.core": "2.1.6" } }, "Microsoft.EntityFrameworkCore": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "Ms5e5QuBAjVIuQsGumeLvkgMiOpnj6wxPvwBIoe1NfTkseWK4NZYztnhgDlpkCPkrUmJEXLv69kl349Ours30Q==", + "resolved": "8.0.14", + "contentHash": "HNn+NPKCm7rR7ij7IRCCbuImaMulFJGloyIbMwi3Ews77RsthM8gxpTZciFLgRYPsBtszKpdIClEwnWmP0vjUg==", "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "8.0.6", - "Microsoft.EntityFrameworkCore.Analyzers": "8.0.6", - "Microsoft.Extensions.Caching.Memory": "8.0.0", - "Microsoft.Extensions.Logging": "8.0.0" + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.14", + "Microsoft.EntityFrameworkCore.Analyzers": "8.0.14", + "Microsoft.Extensions.Caching.Memory": "8.0.1", + "Microsoft.Extensions.Logging": "8.0.1" } }, "Microsoft.EntityFrameworkCore.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "X7wSSBNFRuN8j8M9HDYG7rPpEeyhY+PdJZR9rftmgvsZH0eK5+bZ3b3As8iO4rLEpjsBzDnrgSIY6q2F3HQatw==" + "resolved": "8.0.14", + "contentHash": "Om8/jdWyx9eKFkA1YEgxk13KjGIzA8teLgG7iNFunsI2+MT6UT54Eb4t6oe4NQlIaACj5voUe6szVAQe9GKwDA==" }, "Microsoft.EntityFrameworkCore.Analyzers": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "fDNtuQ4lAaPaCOlsrwUck/GvnF4QLeDpMmE1L5QtxZpMSmWfnL2/vk8sDL9OVTWcfprooI9V5MNpIx3/Tq5ehg==" + "resolved": "8.0.14", + "contentHash": "lzNb3s4t5JDMHGoUFuX/f977dFythvmzGFJxvjlhExdiATPKQfquo2NM0uX8Kelfq04jRljpdbRzcsSsK1q9Tw==" }, "Microsoft.EntityFrameworkCore.Relational": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "chhfmLusCGLGvNYtvMji6KGQlduPDnJsStG/LjS8qJhFWJDDzTZpSr2LHowewcxMrMo/Axc6Jwe+WwSi/vlkTg==", + "resolved": "8.0.14", + "contentHash": "cPEeIk9nFO3+hxj9tp5AvTFdcTZkVPJCOFUiagbf37KhPGtiG0ZWpl15xOzLYTDAYjF5kxH/jcuDYGlLACJEmA==", "dependencies": { - "Microsoft.EntityFrameworkCore": "8.0.6", + "Microsoft.EntityFrameworkCore": "8.0.14", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" } }, "Microsoft.EntityFrameworkCore.Sqlite": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "nC4cZN4zReTb22qd9WDU0eDmlXvkyf2g2pqQ3VIHJbkpJcdWSY/PDgwGpbpShsVcAjXbkjGiUcv9aGwa61xQPw==", + "resolved": "8.0.14", + "contentHash": "iqrhkOirZ9mm3Yu+ut9698VDn6WSykfr9NMECIe6gObUZLxAsg28f1JmIjx2n4pKFm5Uz5sYJ3k4AUnrJbgUag==", "dependencies": { - "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.6", + "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.14", "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" } }, "Microsoft.EntityFrameworkCore.Sqlite.Core": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "87xfPtqSouxWWdynYZv/rubd0rOUeiN9+XeoMWQzpZm/5svH1TuvzFODGIY0zKuXS18NiOFyHl9N6///eaEs/Q==", + "resolved": "8.0.14", + "contentHash": "TcbHy/SdKTcrxlgx14uicVMqrBTu3SP3STGicR+JzYG4I3mVtsBgqtArt6mmUtA7UZj7sogXJ6EFpSyNsJU8Zg==", "dependencies": { - "Microsoft.Data.Sqlite.Core": "8.0.6", - "Microsoft.EntityFrameworkCore.Relational": "8.0.6", - "Microsoft.Extensions.DependencyModel": "8.0.0" + "Microsoft.Data.Sqlite.Core": "8.0.14", + "Microsoft.EntityFrameworkCore.Relational": "8.0.14", + "Microsoft.Extensions.DependencyModel": "8.0.2" } }, "Microsoft.EntityFrameworkCore.Tools": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "UsrAqShiZQBK2lcZsXoyFPccbiLRd2az1uXe1he2z4r2TUYyxNQFy+eysGCpZg0g62I4jFRJfvXIAmCi4QCUpg==", + "resolved": "8.0.14", + "contentHash": "nWlJaFEvT7HpLkOusyReeQPeHsl5EUIBlI5Pr05SYhkWFQ7KGLmUNdv4j1aAjrO+x42Enqr7fu7r3MXLPQqImg==", "dependencies": { - "Microsoft.EntityFrameworkCore.Design": "8.0.6" + "Microsoft.EntityFrameworkCore.Design": "8.0.14" } }, "Microsoft.Extensions.ApiDescription.Server": { @@ -312,13 +312,13 @@ }, "Microsoft.Extensions.Caching.Memory": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==", + "resolved": "8.0.1", + "contentHash": "HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==", "dependencies": { "Microsoft.Extensions.Caching.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", "Microsoft.Extensions.Primitives": "8.0.0" } }, @@ -341,16 +341,16 @@ }, "Microsoft.Extensions.Configuration.Binder": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "mBMoXLsr5s1y2zOHWmKsE9veDcx8h1x/c3rz4baEdQKTeDcmQAPNbB54Pi/lhFO3K431eEq6PFbMgLaa6PHFfA==", + "resolved": "8.0.2", + "contentHash": "7IQhGK+wjyGrNsPBjJcZwWAr+Wf6D4+TwOptUt77bWtgNkiV8tDEbhFS+dDamtQFZ2X7kWG9m71iZQRj2x3zgQ==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" } }, "Microsoft.Extensions.Configuration.FileExtensions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "McP+Lz/EKwvtCv48z0YImw+L1gi1gy5rHhNaNIY2CrjloV+XY8gydT8DjMR6zWeL13AFK+DioVpppwAuO1Gi1w==", + "resolved": "8.0.1", + "contentHash": "EJzSNO9oaAXnTdtdNO6npPRsIIeZCBSNmdQ091VDO7fBiOtJAAeEq6dtrVXIi3ZyjC5XRSAtVvF8SzcneRHqKQ==", "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", @@ -361,72 +361,66 @@ }, "Microsoft.Extensions.Configuration.Json": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "C2wqUoh9OmRL1akaCcKSTmRU8z0kckfImG7zLNI8uyi47Lp+zd5LWAD17waPQEqCz3ioWOCrFUo+JJuoeZLOBw==", + "resolved": "8.0.1", + "contentHash": "L89DLNuimOghjV3tLx0ArFDwVEJD6+uGB3BMCMX01kaLzXkaXHb2021xOMl2QOxUxbdePKUZsUY7n2UUkycjRg==", "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "System.Text.Json": "8.0.0" + "Microsoft.Extensions.Configuration.FileExtensions": "8.0.1", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0" } }, "Microsoft.Extensions.DependencyInjection": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "resolved": "8.0.1", + "contentHash": "BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.DependencyInjection.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==" + "resolved": "8.0.2", + "contentHash": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==" }, "Microsoft.Extensions.DependencyModel": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==", - "dependencies": { - "System.Text.Encodings.Web": "8.0.0", - "System.Text.Json": "8.0.0" - } + "resolved": "8.0.2", + "contentHash": "mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==" }, "Microsoft.Extensions.Diagnostics.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==", + "resolved": "8.0.1", + "contentHash": "elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", - "System.Diagnostics.DiagnosticSource": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "Wtylr3ucMUQ+/6x5ngRtBQ0D0TVloWE3hbwUEhwE16OZHB66uqAEVnEvcAXxW2IFuVAuEHMXX5GebfkbSZQSTw==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.6", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.1", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.14", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.3", "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "GiHK4B5Xsf5YzL73kup2zJoJfDx5RJYBd0LZN6dx8XyOSoZnh7NNrMP+vTLxAJVp//JxHk0KIhBnW9YuFrSVig==" + "resolved": "8.0.14", + "contentHash": "se5sdveMiA3PUOWchOZXY/sGA50MrJ/Mg/G6CdQBtyA4MLySNRilVCi23YT90RAwqvI2uQEk5+buxYdpAfuwpA==" }, "Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "paBCLbj7dMnPSlZ+dkD/Q8KNmI/UZbnCrBVMbX/GZ/6Cs787GSrWawX1UtiCDPfsVGvoaHhQ5oyWHoXrvhb+1g==", + "resolved": "8.0.14", + "contentHash": "4b/wu7E9oNd994GQyehsJkoLAC8BVrRkO6rzWuWTmHm0w0A5m4giPx35BWd7nJ5h0mq2Cfk0ueHlBQo/ICyfJA==", "dependencies": { - "Microsoft.EntityFrameworkCore.Relational": "8.0.6", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.6" + "Microsoft.EntityFrameworkCore.Relational": "8.0.14", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.14" } }, "Microsoft.Extensions.FileProviders.Abstractions": { @@ -454,46 +448,46 @@ }, "Microsoft.Extensions.Hosting.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "resolved": "8.0.1", + "contentHash": "nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "resolved": "8.0.1", + "contentHash": "4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==", "dependencies": { - "Microsoft.Extensions.DependencyInjection": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0" + "Microsoft.Extensions.DependencyInjection": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Logging.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging.Configuration": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "ixXXV0G/12g6MXK65TLngYN9V5hQQRuV+fZi882WIoVJT7h5JvoYoxTEwCgdqwLjSneqh1O+66gM8sMr9z/rsQ==", + "resolved": "8.0.1", + "contentHash": "QWwTrsgOnJMmn+XUslm8D2H1n3PkP/u/v52FODtyBc/k4W9r3i2vcXXeeX/upnzllJYRRbrzVzT0OclfNJtBJA==", "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.Configuration.Binder": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.Configuration.Binder": "8.0.2", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0" } }, @@ -525,49 +519,49 @@ }, "Microsoft.IdentityModel.Abstractions": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "cfPUWdjigLIRIJSKz3uaZxShgf86RVDXHC1VEEchj1gnY25akwPYpbrfSoIGDCqA9UmOMdlctq411+2pAViFow==" + "resolved": "7.1.2", + "contentHash": "33eTIA2uO/L9utJjZWbKsMSVsQf7F8vtd6q5mQX7ZJzNvCpci5fleD6AeANGlbbb7WX7XKxq9+Dkb5e3GNDrmQ==" }, "Microsoft.IdentityModel.JsonWebTokens": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "vxjHVZbMKD3rVdbvKhzAW+7UiFrYToUVm3AGmYfKSOAwyhdLl/ELX1KZr+FaLyyS5VReIzWRWJfbOuHM9i6ywg==", + "resolved": "7.1.2", + "contentHash": "cloLGeZolXbCJhJBc5OC05uhrdhdPL6MWHuVUnkkUvPDeK7HkwThBaLZ1XjBQVk9YhxXE2OvHXnKi0PLleXxDg==", "dependencies": { - "Microsoft.IdentityModel.Tokens": "7.0.3" + "Microsoft.IdentityModel.Tokens": "7.1.2" } }, "Microsoft.IdentityModel.Logging": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "b6GbGO+2LOTBEccHhqoJsOsmemG4A/MY+8H0wK/ewRhiG+DCYwEnucog1cSArPIY55zcn+XdZl0YEiUHkpDISQ==", + "resolved": "7.1.2", + "contentHash": "YCxBt2EeJP8fcXk9desChkWI+0vFqFLvBwrz5hBMsoh0KJE6BC66DnzkdzkJNqMltLromc52dkdT206jJ38cTw==", "dependencies": { - "Microsoft.IdentityModel.Abstractions": "7.0.3" + "Microsoft.IdentityModel.Abstractions": "7.1.2" } }, "Microsoft.IdentityModel.Protocols": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "BtwR+tctBYhPNygyZmt1Rnw74GFrJteW+1zcdIgyvBCjkek6cNwPPqRfdhzCv61i+lwyNomRi8+iI4QKd4YCKA==", + "resolved": "7.1.2", + "contentHash": "SydLwMRFx6EHPWJ+N6+MVaoArN1Htt92b935O3RUWPY1yUF63zEjvd3lBu79eWdZUwedP8TN2I5V9T3nackvIQ==", "dependencies": { - "Microsoft.IdentityModel.Logging": "7.0.3", - "Microsoft.IdentityModel.Tokens": "7.0.3" + "Microsoft.IdentityModel.Logging": "7.1.2", + "Microsoft.IdentityModel.Tokens": "7.1.2" } }, "Microsoft.IdentityModel.Protocols.OpenIdConnect": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "W97TraHApDNArLwpPcXfD+FZH7njJsfEwZE9y9BoofeXMS8H0LBBobz0VOmYmMK4mLdOKxzN7SFT3Ekg0FWI3Q==", + "resolved": "7.1.2", + "contentHash": "6lHQoLXhnMQ42mGrfDkzbIOR3rzKM1W1tgTeMPLgLCqwwGw0d96xFi/UiX/fYsu7d6cD5MJiL3+4HuI8VU+sVQ==", "dependencies": { - "Microsoft.IdentityModel.Protocols": "7.0.3", - "System.IdentityModel.Tokens.Jwt": "7.0.3" + "Microsoft.IdentityModel.Protocols": "7.1.2", + "System.IdentityModel.Tokens.Jwt": "7.1.2" } }, "Microsoft.IdentityModel.Tokens": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "wB+LlbDjhnJ98DULjmFepqf9eEMh/sDs6S6hFh68iNRHmwollwhxk+nbSSfpA5+j+FbRyNskoaY4JsY1iCOKCg==", + "resolved": "7.1.2", + "contentHash": "oICJMqr3aNEDZOwnH5SK49bR6Z4aX0zEAnOLuhloumOSuqnNq+GWBdQyrgILnlcT5xj09xKCP/7Y7gJYB+ls/g==", "dependencies": { - "Microsoft.IdentityModel.Logging": "7.0.3" + "Microsoft.IdentityModel.Logging": "7.1.2" } }, "Microsoft.NETCore.Platforms": { @@ -577,8 +571,8 @@ }, "Microsoft.OpenApi": { "type": "Transitive", - "resolved": "1.6.14", - "contentHash": "tTaBT8qjk3xINfESyOPE2rIellPvB7qpVqiWiyA/lACVvz+xOGiXhFUfohcx82NLbi5avzLW0lx+s6oAqQijfw==" + "resolved": "1.6.23", + "contentHash": "tZ1I0KXnn98CWuV8cpI247A17jaY+ILS9vvF7yhI0uPPEqF4P1d7BWL5Uwtel10w9NucllHB3nTkfYTAcHAh8g==" }, "Microsoft.Win32.Registry": { "type": "Transitive", @@ -603,39 +597,39 @@ }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "jchWPuXJC4N9g1jZ7ZPSfbDSBfMmIgFw5w9VqAT5A9USdE/10IMT83wL48KkTbR7eHdphghe06iGKk7IPhYweA==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "21.0.2" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "ceVSHBPDMxWV7C6TLBoJmJt3X0RQmdPnm+9NU17Zs0TGE58QvSEHn4GJODtK9+ncgUJICjBhPFcNHV40ybEepQ==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.105", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", - "Monai.Deploy.Storage.S3Policy": "1.0.1", - "System.IO.Abstractions": "21.0.2" + "AWSSDK.SecurityToken": "3.7.401.68", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", + "Monai.Deploy.Storage.S3Policy": "1.0.2", + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage.S3Policy": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "mgLlLRphh+vrVKen72jfEzBcoOhAzCjavGMUzWIjIFh5avmb2RJNbQERLSISOCjWnqPscc/xSPKFUUpLMOLdYw==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, "MongoDB.Bson": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "xQx/qtC2nu9oGiyNqAwfiDpUMweLi0nID677cyKykpwmj5AVMrnd//UwmcmuX95178DeY6rf7cjmA613TQXPiA==", + "resolved": "2.30.0", + "contentHash": "Gg0TQUT3IEntcqdug5a9P6d8iwL5CqOpQjVBCq1hxTbkjxdGdY6a2CPv7II44AO9GYUnORYsS6dDME2b7aqYyg==", "dependencies": { "System.Memory": "4.5.5", "System.Runtime.CompilerServices.Unsafe": "5.0.0" @@ -643,25 +637,25 @@ }, "MongoDB.Driver": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "dMqnZTV6MuvoEI4yFtSvKJdAoN6NeyAEvG8aoxnrLIVd7bR84QxLgpsM1nhK17qkOcIx/IrpMIfrvp5iMnYGBg==", + "resolved": "2.30.0", + "contentHash": "BCG8cNF0+U3h5f/O9fu3ktrYhoESBDems1w06PExfYrn2KjHBHCBdvBRY1cIbysnZVjQAJjGtFV9XgW+hXt7Hg==", "dependencies": { "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "2.25.0", - "MongoDB.Driver.Core": "2.25.0", - "MongoDB.Libmongocrypt": "1.8.2" + "MongoDB.Bson": "2.30.0", + "MongoDB.Driver.Core": "2.30.0", + "MongoDB.Libmongocrypt": "1.12.0" } }, "MongoDB.Driver.Core": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "oN4nLgO5HQEThTg/zqeoHqaO2+q64DBVb4r7BvhaFb0p0TM9jZKnCKvh1EA8d9E9swIz0CgvMrvL1mPyRCZzag==", + "resolved": "2.30.0", + "contentHash": "oepDgu24lo44SljuHmIQ99x6jHISnMC4tLfzQGniQg39xiMD8nxalm1HM9RDZcuZbbWa4F6YLt2AIhWkny3XWA==", "dependencies": { "AWSSDK.SecurityToken": "3.7.100.14", "DnsClient": "1.6.1", "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "2.25.0", - "MongoDB.Libmongocrypt": "1.8.2", + "MongoDB.Bson": "2.30.0", + "MongoDB.Libmongocrypt": "1.12.0", "SharpCompress": "0.30.1", "Snappier": "1.0.0", "System.Buffers": "4.5.1", @@ -670,8 +664,8 @@ }, "MongoDB.Libmongocrypt": { "type": "Transitive", - "resolved": "1.8.2", - "contentHash": "z/8JCULSHM1+mzkau0ivIkU9kIn8JEFFSkmYTSaMaWMMHt96JjUtMKuXxeGNGSnHZ5290ZPKIlQfjoWFk2sKog==" + "resolved": "1.12.0", + "contentHash": "B1X51jrtNacKvxKoaqWeknYeJfQS5aWf6BmVLT5JZerz3AUXFzv8edPskJYqBc3kLy1J2PWzMqqsnyb9g8FtcA==" }, "Mono.TextTemplating": { "type": "Transitive", @@ -688,31 +682,31 @@ }, "NLog": { "type": "Transitive", - "resolved": "5.3.2", - "contentHash": "cQRQZuDMjSyMe9EQBnI9v55YAMMz8GAfFd6fFJ6tc/kXnG7Hze8p1I8MgvWSBG6E36wA8vSxRrlm8uSIG+SENg==" + "resolved": "5.4.0", + "contentHash": "LwMcGSW3soF3/SL68rlJN3Eh3ktrAPycC3zZR/07OYBPraZUu0bygEC7kIN10lUQgMXT4s84Fi1chglGdGrQEg==" }, "NLog.Extensions.Logging": { "type": "Transitive", - "resolved": "5.3.11", - "contentHash": "C3Rg6jmOkM7fNBX9jAoVlYzOwsrxdQzl9sYDK1EpRc7RCdjgs8FC9ivJCSsCu/m4l0w83xiTNz7Y1CzmD3BwZg==", + "resolved": "5.4.0", + "contentHash": "5T19INfbzRywZpyBGoQChsB/R7eHW9hR4Ml9O22NRjJpfltGIJ+rsoCcjwr2/V/E6i3/eXLTQwRAeDMICjWpTA==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", "Microsoft.Extensions.Logging": "8.0.0", - "NLog": "5.3.2" + "NLog": "5.4.0" } }, "Polly": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "z2EeUutuy49jBQyZ5s2FUuTCGx3GCzJ0cJ2HbjWwks94TsC6bKTtAHKBkMZOa/DyYRl5yIX7MshvMTWl1J6RNg==", + "resolved": "8.5.2", + "contentHash": "vbXsGgkG86nG+TOwY+SmtrGrRHmHH0DQaxtILx//d3Dz/ocJ8izSNYzdvU2gEtWa/LDD8zJLvD3HdjEkdlvkhg==", "dependencies": { - "Polly.Core": "8.4.0" + "Polly.Core": "8.5.2" } }, "Polly.Core": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "3AZxuP//pxOeBo9tQs7/tz4Z5TTbu4BYfjpaXZD0JYKJo98ngN9TMUz1nybh4k0ykWkMBpGZALV/AmVIE3ew7A==" + "resolved": "8.5.2", + "contentHash": "1MJKdxv4zwDmiWvYvVN24DsrWUfgQ4F83voH8bhbtLMdPuGy8CfTUzsgQhvyrl1a7hrM6f/ydwLVdVUI0xooUw==" }, "RabbitMQ.Client": { "type": "Transitive", @@ -765,24 +759,24 @@ }, "Swashbuckle.AspNetCore.Swagger": { "type": "Transitive", - "resolved": "6.6.2", - "contentHash": "ovgPTSYX83UrQUWiS5vzDcJ8TEX1MAxBgDFMK45rC24MorHEPQlZAHlaXj/yth4Zf6xcktpUgTEBvffRQVwDKA==", + "resolved": "8.0.0", + "contentHash": "+8Y4pVTWbnzotIk6d6rcwsHGpCchPDqqrvYkyGlI3go+pFaKM+4eX30iCyI0hvr0RMtObJCFhK6aDtlQFbEF1g==", "dependencies": { - "Microsoft.OpenApi": "1.6.14" + "Microsoft.OpenApi": "1.6.23" } }, "Swashbuckle.AspNetCore.SwaggerGen": { "type": "Transitive", - "resolved": "6.6.2", - "contentHash": "zv4ikn4AT1VYuOsDCpktLq4QDq08e7Utzbir86M5/ZkRaLXbCPF11E1/vTmOiDzRTl0zTZINQU2qLKwTcHgfrA==", + "resolved": "8.0.0", + "contentHash": "skCeIQ93yMcUm1PQby5qitFM6KLIlLMj4/i8JHy86x2OFzxTNaaas2kUg6rNV3JvucFvYCNyImg7NMtZHErSzQ==", "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "6.6.2" + "Swashbuckle.AspNetCore.Swagger": "8.0.0" } }, "Swashbuckle.AspNetCore.SwaggerUI": { "type": "Transitive", - "resolved": "6.6.2", - "contentHash": "mBBb+/8Hm2Q3Wygag+hu2jj69tZW5psuv0vMRXY07Wy+Rrj40vRP8ZTbKBhs91r45/HXT4aY4z0iSBYx1h6JvA==" + "resolved": "8.0.0", + "contentHash": "IMqmgclFiZL2QIfopOmWYofZzckrl+SdMt1h4mKC0jc94F+uzt3IHA3YFC0CGlwBqTTSnxHqNUKomNTeAhZbYA==" }, "System.Buffers": { "type": "Transitive", @@ -850,27 +844,22 @@ "System.Composition.Runtime": "6.0.0" } }, - "System.Diagnostics.DiagnosticSource": { - "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" - }, "System.IdentityModel.Tokens.Jwt": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "caEe+OpQNYNiyZb+DJpUVROXoVySWBahko2ooNfUcllxa9ZQUM8CgM/mDjP6AoFn6cQU9xMmG+jivXWub8cbGg==", + "resolved": "7.1.2", + "contentHash": "Thhbe1peAmtSBFaV/ohtykXiZSOkx59Da44hvtWfIMFofDA3M3LaVyjstACf2rKGn4dEDR2cUpRAZ0Xs/zB+7Q==", "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "7.0.3", - "Microsoft.IdentityModel.Tokens": "7.0.3" + "Microsoft.IdentityModel.JsonWebTokens": "7.1.2", + "Microsoft.IdentityModel.Tokens": "7.1.2" } }, "System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ewYQGK0kzOpfiYCF0P0nqPAnKqGhqiXAWDFeMtQtwJyERA2s7nLx7KEALwDvIFjZvX6677IsPREoLIU9oBOQvA==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "System.IO.Hashing": { @@ -922,11 +911,8 @@ }, "System.Text.Encoding.CodePages": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "6.0.1", + "contentHash": "OV04vEWTSDXzaAJCjylOIdjB7Z7QTYQcz4/ATZSiG8PLkZLsbtaADj0Ydj4FdFnqq4PAwEA7SuILE+6ka4cn6A==" }, "System.Text.Encodings.Web": { "type": "Transitive", @@ -935,11 +921,8 @@ }, "System.Text.Json": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", - "dependencies": { - "System.Text.Encodings.Web": "8.0.0" - } + "resolved": "8.0.5", + "contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==" }, "System.Threading.Channels": { "type": "Transitive", @@ -948,15 +931,15 @@ }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ViPtOy4lAlmWq9GDEwiE5C9XSgDGHUWMRvVvruI38pbikUXkgu7xnCVW7PYdQOjS+iWWcQHt+U7oyPedfnWSHg==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ii6Xgru3ozRaLezwE/lKAPTdE3ES+S3P3ul+QrMxIP10GN+LF0JAi4aWqb8lxzEAwBMSAeK/QipEpVt4KYlTOg==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "ZstdSharp.Port": { @@ -967,27 +950,27 @@ "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "HL7-dotnetcore": "[2.36.0, )", + "HL7-dotnetcore": "[2.39.1, )", "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.6, )", + "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.14, )", "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Messaging.RabbitMQ": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )", - "fo-dicom": "[5.1.2, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Messaging.RabbitMQ": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )", + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.informaticsgateway.client.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )" + "Ardalis.GuardClauses": "[4.6.0, )" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )", - "System.IO.Abstractions": "[21.0.2, )" + "Ardalis.GuardClauses": "[4.6.0, )", + "System.IO.Abstractions": "[21.3.1, )" } }, "monai.deploy.informaticsgateway.configuration": { @@ -1000,9 +983,9 @@ "monai.deploy.informaticsgateway.database": { "type": "Project", "dependencies": { - "AspNetCore.HealthChecks.MongoDb": "[8.0.1, )", - "Microsoft.EntityFrameworkCore.Tools": "[8.0.6, )", - "Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore": "[8.0.6, )", + "AspNetCore.HealthChecks.MongoDb": "[8.1.0, )", + "Microsoft.EntityFrameworkCore.Tools": "[8.0.14, )", + "Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore": "[8.0.14, )", "Microsoft.Extensions.Options.ConfigurationExtensions": "[8.0.0, )", "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", @@ -1016,55 +999,55 @@ "dependencies": { "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", - "NLog": "[5.3.2, )" + "NLog": "[5.4.0, )" } }, "monai.deploy.informaticsgateway.database.entityframework": { "type": "Project", "dependencies": { - "Microsoft.EntityFrameworkCore": "[8.0.6, )", - "Microsoft.EntityFrameworkCore.Design": "[8.0.6, )", - "Microsoft.EntityFrameworkCore.Sqlite": "[8.0.6, )", - "Microsoft.Extensions.Configuration.FileExtensions": "[8.0.0, )", - "Microsoft.Extensions.Configuration.Json": "[8.0.0, )", + "Microsoft.EntityFrameworkCore": "[8.0.14, )", + "Microsoft.EntityFrameworkCore.Design": "[8.0.14, )", + "Microsoft.EntityFrameworkCore.Sqlite": "[8.0.14, )", + "Microsoft.Extensions.Configuration.FileExtensions": "[8.0.1, )", + "Microsoft.Extensions.Configuration.Json": "[8.0.1, )", "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", "Monai.Deploy.InformaticsGateway.Database.Api": "[1.0.0, )", - "Polly": "[8.4.0, )" + "Polly": "[8.5.2, )" } }, "monai.deploy.informaticsgateway.database.mongodb": { "type": "Project", "dependencies": { "Monai.Deploy.InformaticsGateway.Database.Api": "[1.0.0, )", - "MongoDB.Driver": "[2.25.0, )", - "Polly": "[8.4.0, )" + "MongoDB.Driver": "[2.30.0, )", + "Polly": "[8.5.2, )" } }, "monai.deploy.informaticsgateway.dicomweb.client": { "type": "Project", "dependencies": { "Monai.Deploy.InformaticsGateway.Client.Common": "[1.0.0, )", - "fo-dicom": "[5.1.2, )" + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.informaticsgateway.plugins.remoteappexecution": { "type": "Project", "dependencies": { - "Microsoft.EntityFrameworkCore": "[8.0.6, )", - "Microsoft.EntityFrameworkCore.Design": "[8.0.6, )", - "Microsoft.EntityFrameworkCore.Relational": "[8.0.6, )", - "Microsoft.EntityFrameworkCore.Sqlite": "[8.0.6, )", + "Microsoft.EntityFrameworkCore": "[8.0.14, )", + "Microsoft.EntityFrameworkCore.Design": "[8.0.14, )", + "Microsoft.EntityFrameworkCore.Relational": "[8.0.14, )", + "Microsoft.EntityFrameworkCore.Sqlite": "[8.0.14, )", "Microsoft.Extensions.Configuration": "[8.0.0, )", - "Microsoft.Extensions.Configuration.FileExtensions": "[8.0.0, )", - "Microsoft.Extensions.Configuration.Json": "[8.0.0, )", + "Microsoft.Extensions.Configuration.FileExtensions": "[8.0.1, )", + "Microsoft.Extensions.Configuration.Json": "[8.0.1, )", "Microsoft.Extensions.Options.ConfigurationExtensions": "[8.0.0, )", "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", "Monai.Deploy.InformaticsGateway.Database.Api": "[1.0.0, )", - "MongoDB.Driver": "[2.25.0, )", - "NLog": "[5.3.2, )", - "Polly": "[8.4.0, )" + "MongoDB.Driver": "[2.30.0, )", + "NLog": "[5.4.0, )", + "Polly": "[8.5.2, )" } } } diff --git a/src/Plug-ins/RemoteAppExecution/Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution.csproj b/src/Plug-ins/RemoteAppExecution/Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution.csproj index f698b468..7c342e85 100755 --- a/src/Plug-ins/RemoteAppExecution/Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution.csproj +++ b/src/Plug-ins/RemoteAppExecution/Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution.csproj @@ -42,16 +42,16 @@ - - - - - - - + + + + + + + - - + + \ No newline at end of file diff --git a/src/Plug-ins/RemoteAppExecution/Test/Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution.Test.csproj b/src/Plug-ins/RemoteAppExecution/Test/Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution.Test.csproj index b322a751..5dea6090 100755 --- a/src/Plug-ins/RemoteAppExecution/Test/Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution.Test.csproj +++ b/src/Plug-ins/RemoteAppExecution/Test/Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution.Test.csproj @@ -34,22 +34,22 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive - + - + runtime; build; native; contentfiles; analyzers; buildtransitive all - - - + + + diff --git a/src/Plug-ins/RemoteAppExecution/Test/packages.lock.json b/src/Plug-ins/RemoteAppExecution/Test/packages.lock.json index 265644fa..97e3b15c 100644 --- a/src/Plug-ins/RemoteAppExecution/Test/packages.lock.json +++ b/src/Plug-ins/RemoteAppExecution/Test/packages.lock.json @@ -4,48 +4,48 @@ "net8.0": { "coverlet.collector": { "type": "Direct", - "requested": "[6.0.2, )", - "resolved": "6.0.2", - "contentHash": "bJShQ6uWRTQ100ZeyiMqcFlhP7WJ+bCuabUs885dJiBEzMsJMSFr7BOyeCw4rgvQokteGi5rKQTlkhfQPUXg2A==" + "requested": "[6.0.4, )", + "resolved": "6.0.4", + "contentHash": "lkhqpF8Pu2Y7IiN7OntbsTtdbpR1syMsm2F3IgX6ootA4ffRqWL5jF7XipHuZQTdVuWG/gVAAcf8mjk8Tz0xPg==" }, "Microsoft.EntityFrameworkCore.InMemory": { "type": "Direct", - "requested": "[8.0.6, )", - "resolved": "8.0.6", - "contentHash": "/ATG+iNpRELMJ1HJgcGPWgqOFGARrK2LCuZtX8yPXK421HS7krDe0zkyFVucS9YVHnMWk1Asa8zZCtvHqVkk2g==", + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "q0/yGN42dy/ph9tV1ecuvrzpfkGuGdjyfdWNSXylQ0CDUidBCG6o+srOyOPg32gbjV0nLRv9YFkrS4xprXwAew==", "dependencies": { - "Microsoft.EntityFrameworkCore": "8.0.6" + "Microsoft.EntityFrameworkCore": "8.0.14" } }, "Microsoft.EntityFrameworkCore.Sqlite": { "type": "Direct", - "requested": "[8.0.6, )", - "resolved": "8.0.6", - "contentHash": "nC4cZN4zReTb22qd9WDU0eDmlXvkyf2g2pqQ3VIHJbkpJcdWSY/PDgwGpbpShsVcAjXbkjGiUcv9aGwa61xQPw==", + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "iqrhkOirZ9mm3Yu+ut9698VDn6WSykfr9NMECIe6gObUZLxAsg28f1JmIjx2n4pKFm5Uz5sYJ3k4AUnrJbgUag==", "dependencies": { - "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.6", + "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.14", "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" } }, "Microsoft.EntityFrameworkCore.Sqlite.Core": { "type": "Direct", - "requested": "[8.0.6, )", - "resolved": "8.0.6", - "contentHash": "87xfPtqSouxWWdynYZv/rubd0rOUeiN9+XeoMWQzpZm/5svH1TuvzFODGIY0zKuXS18NiOFyHl9N6///eaEs/Q==", + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "TcbHy/SdKTcrxlgx14uicVMqrBTu3SP3STGicR+JzYG4I3mVtsBgqtArt6mmUtA7UZj7sogXJ6EFpSyNsJU8Zg==", "dependencies": { - "Microsoft.Data.Sqlite.Core": "8.0.6", - "Microsoft.EntityFrameworkCore.Relational": "8.0.6", - "Microsoft.Extensions.DependencyModel": "8.0.0" + "Microsoft.Data.Sqlite.Core": "8.0.14", + "Microsoft.EntityFrameworkCore.Relational": "8.0.14", + "Microsoft.Extensions.DependencyModel": "8.0.2" } }, "Microsoft.NET.Test.Sdk": { "type": "Direct", - "requested": "[17.10.0, )", - "resolved": "17.10.0", - "contentHash": "0/2HeACkaHEYU3wc83YlcD2Fi4LMtECJjqrtvw0lPi9DCEa35zSPt1j4fuvM8NagjDqJuh1Ja35WcRtn1Um6/A==", + "requested": "[17.13.0, )", + "resolved": "17.13.0", + "contentHash": "W19wCPizaIC9Zh47w8wWI/yxuqR7/dtABwOrc8r2jX/8mUNxM2vw4fXDh+DJTeogxV+KzKwg5jNNGQVwf3LXyA==", "dependencies": { - "Microsoft.CodeCoverage": "17.10.0", - "Microsoft.TestPlatform.TestHost": "17.10.0" + "Microsoft.CodeCoverage": "17.13.0", + "Microsoft.TestPlatform.TestHost": "17.13.0" } }, "Moq": { @@ -59,11 +59,11 @@ }, "System.IO.Abstractions.TestingHelpers": { "type": "Direct", - "requested": "[21.0.2, )", - "resolved": "21.0.2", - "contentHash": "35gVJWBrsUkf+ob0xZJaVja0gLYA5UnqM1K0cSHHKfZ71aMMwUbhNNOy/cpHiVF+Z7FLiREVE080F9QDCf5O2A==", + "requested": "[21.3.1, )", + "resolved": "21.3.1", + "contentHash": "LsvGSS5XbvVonvWo1fb6X5T3WFAe59A9A+F+KiyXXDEw8FDDEvaoI+IbUzLPyjTZJ1sIFredoJCgppXjEESL4A==", "dependencies": { - "TestableIO.System.IO.Abstractions.TestingHelpers": "21.0.2" + "TestableIO.System.IO.Abstractions.TestingHelpers": "21.3.1" } }, "xRetry": { @@ -94,20 +94,20 @@ }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.304.15", - "contentHash": "XLfl4/wuTDWXH73FjGUx5P6Jf6FNLTlyVwWvQ0b/WyBOtZVJxPlCKUTYDn06VdqcLGg3uPP6FKJqnplKsnMHMw==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.105", - "contentHash": "axqpqdA4QZvHzEdGDLk5/IpPQsUTIcnVDulz4uyE+UEeYAHpFcp/BNQxmmIU4Gdv0G5KwQWKiaUaZPuLVN0Esg==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.304.15, 4.0.0)" + "AWSSDK.Core": "[3.7.402.25, 4.0.0)" } }, "Castle.Core": { @@ -120,8 +120,8 @@ }, "CommunityToolkit.HighPerformance": { "type": "Transitive", - "resolved": "8.2.2", - "contentHash": "+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==" + "resolved": "8.3.2", + "contentHash": "1Os81ua0FmIOtiSgOk5C1KBraQ3SDfxs/7BG4qDagm48nGplr//lAVqLH9I2TLDVqRFdhqTUaEITFA5Ho/Ovkw==" }, "DnsClient": { "type": "Transitive", @@ -133,26 +133,26 @@ }, "fo-dicom": { "type": "Transitive", - "resolved": "5.1.2", - "contentHash": "2lM76Vq+GRdwyY3BQiUJ+V6yxdFiOG4ysLJC7qNTxLsq/1pr5ZTTXiIzWQa+uJ0MuKnzzFogV5+meDflsyjs2g==", + "resolved": "5.2.1", + "contentHash": "Oa6raonOj/Xm+a1j3O89OlUXJIF55jLAKjCuXKINYJMJ+hJ/9Al1YOxPs1hut8DBKvHbgYtgdRFtqGNS+Qt6Uw==", "dependencies": { - "CommunityToolkit.HighPerformance": "8.2.2", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "CommunityToolkit.HighPerformance": "8.3.2", + "Microsoft.Bcl.AsyncInterfaces": "8.0.0", "Microsoft.Bcl.HashCode": "1.1.1", "Microsoft.Extensions.DependencyInjection": "6.0.1", "Microsoft.Extensions.Logging": "6.0.0", "Microsoft.Extensions.Options": "6.0.0", "System.Buffers": "4.5.1", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "6.0.9", + "System.Text.Encoding.CodePages": "6.0.1", + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.5", "System.Threading.Channels": "6.0.0" } }, "HL7-dotnetcore": { "type": "Transitive", - "resolved": "2.36.0", - "contentHash": "N1HLMeIqYuY+4O69ItgZJoDBnnpNkK5N2pClceTJ2nFJxsP48iCsA4iz3tm43Yszi4r/vaThoc3UoLBfGP3vKw==" + "resolved": "2.39.1", + "contentHash": "xbgykLlAr644SfYY2oxnpYYto+JFYLuUHt00hRTlhpB+5DiFC2oVSVRA+8yyq/lmkjTNidtTbN9nyK0ft4DSfw==" }, "Humanizer.Core": { "type": "Transitive", @@ -166,8 +166,8 @@ }, "Microsoft.Bcl.AsyncInterfaces": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==" + "resolved": "8.0.0", + "contentHash": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==" }, "Microsoft.Bcl.HashCode": { "type": "Transitive", @@ -225,56 +225,56 @@ }, "Microsoft.CodeCoverage": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "yC7oSlnR54XO5kOuHlVOKtxomNNN1BWXX8lK1G2jaPXT9sUok7kCOoA4Pgs0qyFaCtMrNsprztYMeoEGqCm4uA==" + "resolved": "17.13.0", + "contentHash": "9LIUy0y+DvUmEPtbRDw6Bay3rzwqFV8P4efTrK4CZhQle3M/QwLPjISghfcolmEGAPWxuJi6m98ZEfk4VR4Lfg==" }, "Microsoft.Data.Sqlite.Core": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "umhZ0ZF2RI81rGFTnYmCxI+Euj4Aqe/6Y4+8CxN9OVJNGDNIqB5laJ3wxQTU8zXCcm2k9F7FL+/6RVoOT4z1Fw==", + "resolved": "8.0.14", + "contentHash": "MT/9fCazlL4T10BwCQCxvUXOmtU4rR1qDl2mpePFhmuXONafUjXUf8FH94IR79ISxrGVHxsOWvwGzgKi6RSE/g==", "dependencies": { "SQLitePCLRaw.core": "2.1.6" } }, "Microsoft.EntityFrameworkCore": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "Ms5e5QuBAjVIuQsGumeLvkgMiOpnj6wxPvwBIoe1NfTkseWK4NZYztnhgDlpkCPkrUmJEXLv69kl349Ours30Q==", + "resolved": "8.0.14", + "contentHash": "HNn+NPKCm7rR7ij7IRCCbuImaMulFJGloyIbMwi3Ews77RsthM8gxpTZciFLgRYPsBtszKpdIClEwnWmP0vjUg==", "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "8.0.6", - "Microsoft.EntityFrameworkCore.Analyzers": "8.0.6", - "Microsoft.Extensions.Caching.Memory": "8.0.0", - "Microsoft.Extensions.Logging": "8.0.0" + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.14", + "Microsoft.EntityFrameworkCore.Analyzers": "8.0.14", + "Microsoft.Extensions.Caching.Memory": "8.0.1", + "Microsoft.Extensions.Logging": "8.0.1" } }, "Microsoft.EntityFrameworkCore.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "X7wSSBNFRuN8j8M9HDYG7rPpEeyhY+PdJZR9rftmgvsZH0eK5+bZ3b3As8iO4rLEpjsBzDnrgSIY6q2F3HQatw==" + "resolved": "8.0.14", + "contentHash": "Om8/jdWyx9eKFkA1YEgxk13KjGIzA8teLgG7iNFunsI2+MT6UT54Eb4t6oe4NQlIaACj5voUe6szVAQe9GKwDA==" }, "Microsoft.EntityFrameworkCore.Analyzers": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "fDNtuQ4lAaPaCOlsrwUck/GvnF4QLeDpMmE1L5QtxZpMSmWfnL2/vk8sDL9OVTWcfprooI9V5MNpIx3/Tq5ehg==" + "resolved": "8.0.14", + "contentHash": "lzNb3s4t5JDMHGoUFuX/f977dFythvmzGFJxvjlhExdiATPKQfquo2NM0uX8Kelfq04jRljpdbRzcsSsK1q9Tw==" }, "Microsoft.EntityFrameworkCore.Design": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "4OT+mH+8EB4Kfn1ENpDx2Ssx459j200gvdhDOKq5lkHmHzkRpmEDKS5GfqaLZvBLJKWu1FVGQ7Wnczcjb0hX4g==", + "resolved": "8.0.14", + "contentHash": "ncCvbJYGXK7eSOVqfQNXLaxMWKGaKSYX1VJZjyJXg3IxxmF50B8p/isprgrVLR+SlQwTG1lmhPAPn0dOvCqlrw==", "dependencies": { "Humanizer.Core": "2.14.1", "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0", - "Microsoft.EntityFrameworkCore.Relational": "8.0.6", - "Microsoft.Extensions.DependencyModel": "8.0.0", + "Microsoft.EntityFrameworkCore.Relational": "8.0.14", + "Microsoft.Extensions.DependencyModel": "8.0.2", "Mono.TextTemplating": "2.2.1" } }, "Microsoft.EntityFrameworkCore.Relational": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "chhfmLusCGLGvNYtvMji6KGQlduPDnJsStG/LjS8qJhFWJDDzTZpSr2LHowewcxMrMo/Axc6Jwe+WwSi/vlkTg==", + "resolved": "8.0.14", + "contentHash": "cPEeIk9nFO3+hxj9tp5AvTFdcTZkVPJCOFUiagbf37KhPGtiG0ZWpl15xOzLYTDAYjF5kxH/jcuDYGlLACJEmA==", "dependencies": { - "Microsoft.EntityFrameworkCore": "8.0.6", + "Microsoft.EntityFrameworkCore": "8.0.14", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" } }, @@ -288,13 +288,13 @@ }, "Microsoft.Extensions.Caching.Memory": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==", + "resolved": "8.0.1", + "contentHash": "HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==", "dependencies": { "Microsoft.Extensions.Caching.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", "Microsoft.Extensions.Primitives": "8.0.0" } }, @@ -325,8 +325,8 @@ }, "Microsoft.Extensions.Configuration.FileExtensions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "McP+Lz/EKwvtCv48z0YImw+L1gi1gy5rHhNaNIY2CrjloV+XY8gydT8DjMR6zWeL13AFK+DioVpppwAuO1Gi1w==", + "resolved": "8.0.1", + "contentHash": "EJzSNO9oaAXnTdtdNO6npPRsIIeZCBSNmdQ091VDO7fBiOtJAAeEq6dtrVXIi3ZyjC5XRSAtVvF8SzcneRHqKQ==", "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", @@ -337,63 +337,57 @@ }, "Microsoft.Extensions.Configuration.Json": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "C2wqUoh9OmRL1akaCcKSTmRU8z0kckfImG7zLNI8uyi47Lp+zd5LWAD17waPQEqCz3ioWOCrFUo+JJuoeZLOBw==", + "resolved": "8.0.1", + "contentHash": "L89DLNuimOghjV3tLx0ArFDwVEJD6+uGB3BMCMX01kaLzXkaXHb2021xOMl2QOxUxbdePKUZsUY7n2UUkycjRg==", "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "System.Text.Json": "8.0.0" + "Microsoft.Extensions.Configuration.FileExtensions": "8.0.1", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0" } }, "Microsoft.Extensions.DependencyInjection": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "resolved": "8.0.1", + "contentHash": "BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.DependencyInjection.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==" + "resolved": "8.0.2", + "contentHash": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==" }, "Microsoft.Extensions.DependencyModel": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==", - "dependencies": { - "System.Text.Encodings.Web": "8.0.0", - "System.Text.Json": "8.0.0" - } + "resolved": "8.0.2", + "contentHash": "mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==" }, "Microsoft.Extensions.Diagnostics.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==", + "resolved": "8.0.1", + "contentHash": "elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", - "System.Diagnostics.DiagnosticSource": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "Wtylr3ucMUQ+/6x5ngRtBQ0D0TVloWE3hbwUEhwE16OZHB66uqAEVnEvcAXxW2IFuVAuEHMXX5GebfkbSZQSTw==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.6", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.1", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.14", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.3", "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "GiHK4B5Xsf5YzL73kup2zJoJfDx5RJYBd0LZN6dx8XyOSoZnh7NNrMP+vTLxAJVp//JxHk0KIhBnW9YuFrSVig==" + "resolved": "8.0.14", + "contentHash": "se5sdveMiA3PUOWchOZXY/sGA50MrJ/Mg/G6CdQBtyA4MLySNRilVCi23YT90RAwqvI2uQEk5+buxYdpAfuwpA==" }, "Microsoft.Extensions.FileProviders.Abstractions": { "type": "Transitive", @@ -420,32 +414,32 @@ }, "Microsoft.Extensions.Hosting.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "resolved": "8.0.1", + "contentHash": "nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "resolved": "8.0.1", + "contentHash": "4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==", "dependencies": { - "Microsoft.Extensions.DependencyInjection": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0" + "Microsoft.Extensions.DependencyInjection": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Logging.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Options": { @@ -481,18 +475,18 @@ }, "Microsoft.TestPlatform.ObjectModel": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "KkwhjQevuDj0aBRoPLY6OLAhGqbPUEBuKLbaCs0kUVw29qiOYncdORd4mLVJbn9vGZ7/iFGQ/+AoJl0Tu5Umdg==", + "resolved": "17.13.0", + "contentHash": "bt0E0Dx+iqW97o4A59RCmUmz/5NarJ7LRL+jXbSHod72ibL5XdNm1Ke+UO5tFhBG4VwHLcSjqq9BUSblGNWamw==", "dependencies": { "System.Reflection.Metadata": "1.6.0" } }, "Microsoft.TestPlatform.TestHost": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "LWpMdfqhHvcUkeMCvNYJO8QlPLlYz9XPPb+ZbaXIKhdmjAV0wqTSrTiW5FLaf7RRZT50AQADDOYMOe0HxDxNgA==", + "resolved": "17.13.0", + "contentHash": "9GGw08Dc3AXspjekdyTdZ/wYWFlxbgcF0s7BKxzVX+hzAwpifDOdxM+ceVaaJSQOwqt3jtuNlHn3XTpKUS9x9Q==", "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "17.10.0", + "Microsoft.TestPlatform.ObjectModel": "17.13.0", "Newtonsoft.Json": "13.0.1" } }, @@ -507,49 +501,49 @@ }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "jchWPuXJC4N9g1jZ7ZPSfbDSBfMmIgFw5w9VqAT5A9USdE/10IMT83wL48KkTbR7eHdphghe06iGKk7IPhYweA==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "21.0.2" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Messaging.RabbitMQ": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "/tj7IO/SHYXNRfxh7iIMms9TurhtCIozZp5lDFvd/WkPgKWZyyyZH8wxkNb9r7jIh/vXkrGJcPCxR30uoET+7g==", + "resolved": "2.0.4", + "contentHash": "tmEERdnqJq1STVGx30+wVyj7AtvtT8K2j/59lSiZ7k58ZdRku601Gs6k1KZ/sfGeobCjaB4gI7GROxK+lN6gbg==", "dependencies": { - "Monai.Deploy.Messaging": "2.0.3", - "Polly": "8.4.0", + "Monai.Deploy.Messaging": "2.0.4", + "Polly": "8.5.2", "RabbitMQ.Client": "6.8.1" } }, "Monai.Deploy.Storage": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "ceVSHBPDMxWV7C6TLBoJmJt3X0RQmdPnm+9NU17Zs0TGE58QvSEHn4GJODtK9+ncgUJICjBhPFcNHV40ybEepQ==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.105", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", - "Monai.Deploy.Storage.S3Policy": "1.0.1", - "System.IO.Abstractions": "21.0.2" + "AWSSDK.SecurityToken": "3.7.401.68", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", + "Monai.Deploy.Storage.S3Policy": "1.0.2", + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage.S3Policy": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "mgLlLRphh+vrVKen72jfEzBcoOhAzCjavGMUzWIjIFh5avmb2RJNbQERLSISOCjWnqPscc/xSPKFUUpLMOLdYw==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, "MongoDB.Bson": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "xQx/qtC2nu9oGiyNqAwfiDpUMweLi0nID677cyKykpwmj5AVMrnd//UwmcmuX95178DeY6rf7cjmA613TQXPiA==", + "resolved": "2.30.0", + "contentHash": "Gg0TQUT3IEntcqdug5a9P6d8iwL5CqOpQjVBCq1hxTbkjxdGdY6a2CPv7II44AO9GYUnORYsS6dDME2b7aqYyg==", "dependencies": { "System.Memory": "4.5.5", "System.Runtime.CompilerServices.Unsafe": "5.0.0" @@ -557,25 +551,25 @@ }, "MongoDB.Driver": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "dMqnZTV6MuvoEI4yFtSvKJdAoN6NeyAEvG8aoxnrLIVd7bR84QxLgpsM1nhK17qkOcIx/IrpMIfrvp5iMnYGBg==", + "resolved": "2.30.0", + "contentHash": "BCG8cNF0+U3h5f/O9fu3ktrYhoESBDems1w06PExfYrn2KjHBHCBdvBRY1cIbysnZVjQAJjGtFV9XgW+hXt7Hg==", "dependencies": { "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "2.25.0", - "MongoDB.Driver.Core": "2.25.0", - "MongoDB.Libmongocrypt": "1.8.2" + "MongoDB.Bson": "2.30.0", + "MongoDB.Driver.Core": "2.30.0", + "MongoDB.Libmongocrypt": "1.12.0" } }, "MongoDB.Driver.Core": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "oN4nLgO5HQEThTg/zqeoHqaO2+q64DBVb4r7BvhaFb0p0TM9jZKnCKvh1EA8d9E9swIz0CgvMrvL1mPyRCZzag==", + "resolved": "2.30.0", + "contentHash": "oepDgu24lo44SljuHmIQ99x6jHISnMC4tLfzQGniQg39xiMD8nxalm1HM9RDZcuZbbWa4F6YLt2AIhWkny3XWA==", "dependencies": { "AWSSDK.SecurityToken": "3.7.100.14", "DnsClient": "1.6.1", "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "2.25.0", - "MongoDB.Libmongocrypt": "1.8.2", + "MongoDB.Bson": "2.30.0", + "MongoDB.Libmongocrypt": "1.12.0", "SharpCompress": "0.30.1", "Snappier": "1.0.0", "System.Buffers": "4.5.1", @@ -584,8 +578,8 @@ }, "MongoDB.Libmongocrypt": { "type": "Transitive", - "resolved": "1.8.2", - "contentHash": "z/8JCULSHM1+mzkau0ivIkU9kIn8JEFFSkmYTSaMaWMMHt96JjUtMKuXxeGNGSnHZ5290ZPKIlQfjoWFk2sKog==" + "resolved": "1.12.0", + "contentHash": "B1X51jrtNacKvxKoaqWeknYeJfQS5aWf6BmVLT5JZerz3AUXFzv8edPskJYqBc3kLy1J2PWzMqqsnyb9g8FtcA==" }, "Mono.TextTemplating": { "type": "Transitive", @@ -602,21 +596,21 @@ }, "NLog": { "type": "Transitive", - "resolved": "5.3.2", - "contentHash": "cQRQZuDMjSyMe9EQBnI9v55YAMMz8GAfFd6fFJ6tc/kXnG7Hze8p1I8MgvWSBG6E36wA8vSxRrlm8uSIG+SENg==" + "resolved": "5.4.0", + "contentHash": "LwMcGSW3soF3/SL68rlJN3Eh3ktrAPycC3zZR/07OYBPraZUu0bygEC7kIN10lUQgMXT4s84Fi1chglGdGrQEg==" }, "Polly": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "z2EeUutuy49jBQyZ5s2FUuTCGx3GCzJ0cJ2HbjWwks94TsC6bKTtAHKBkMZOa/DyYRl5yIX7MshvMTWl1J6RNg==", + "resolved": "8.5.2", + "contentHash": "vbXsGgkG86nG+TOwY+SmtrGrRHmHH0DQaxtILx//d3Dz/ocJ8izSNYzdvU2gEtWa/LDD8zJLvD3HdjEkdlvkhg==", "dependencies": { - "Polly.Core": "8.4.0" + "Polly.Core": "8.5.2" } }, "Polly.Core": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "3AZxuP//pxOeBo9tQs7/tz4Z5TTbu4BYfjpaXZD0JYKJo98ngN9TMUz1nybh4k0ykWkMBpGZALV/AmVIE3ew7A==" + "resolved": "8.5.2", + "contentHash": "1MJKdxv4zwDmiWvYvVN24DsrWUfgQ4F83voH8bhbtLMdPuGy8CfTUzsgQhvyrl1a7hrM6f/ydwLVdVUI0xooUw==" }, "RabbitMQ.Client": { "type": "Transitive", @@ -733,11 +727,6 @@ "System.Composition.Runtime": "6.0.0" } }, - "System.Diagnostics.DiagnosticSource": { - "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" - }, "System.Diagnostics.EventLog": { "type": "Transitive", "resolved": "6.0.0", @@ -745,11 +734,11 @@ }, "System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ewYQGK0kzOpfiYCF0P0nqPAnKqGhqiXAWDFeMtQtwJyERA2s7nLx7KEALwDvIFjZvX6677IsPREoLIU9oBOQvA==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "System.IO.Pipelines": { @@ -791,11 +780,8 @@ }, "System.Text.Encoding.CodePages": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "6.0.1", + "contentHash": "OV04vEWTSDXzaAJCjylOIdjB7Z7QTYQcz4/ATZSiG8PLkZLsbtaADj0Ydj4FdFnqq4PAwEA7SuILE+6ka4cn6A==" }, "System.Text.Encodings.Web": { "type": "Transitive", @@ -804,11 +790,8 @@ }, "System.Text.Json": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", - "dependencies": { - "System.Text.Encodings.Web": "8.0.0" - } + "resolved": "8.0.5", + "contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==" }, "System.Threading.Channels": { "type": "Transitive", @@ -817,24 +800,24 @@ }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ViPtOy4lAlmWq9GDEwiE5C9XSgDGHUWMRvVvruI38pbikUXkgu7xnCVW7PYdQOjS+iWWcQHt+U7oyPedfnWSHg==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.TestingHelpers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "4s6EC7rGSlNPqC9/FOmYavFTjetO7zDBnc0H8Hyb8ABJll2UgeC7UvdNLwx28/hhUE8AvUJmwamjAII6LJWIQA==", + "resolved": "21.3.1", + "contentHash": "XP7tiKVtnOP+jXWsRqgc7WCV2tsoolVnxSNUJXwdWmHCpLMsVlZXRag7dMynnNEQQB9XEJx25RteqN5APCnjag==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ii6Xgru3ozRaLezwE/lKAPTdE3ES+S3P3ul+QrMxIP10GN+LF0JAi4aWqb8lxzEAwBMSAeK/QipEpVt4KYlTOg==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "xunit.abstractions": { @@ -885,21 +868,21 @@ "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "HL7-dotnetcore": "[2.36.0, )", + "HL7-dotnetcore": "[2.39.1, )", "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.6, )", + "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.14, )", "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Messaging.RabbitMQ": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )", - "fo-dicom": "[5.1.2, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Messaging.RabbitMQ": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )", + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )", - "System.IO.Abstractions": "[21.0.2, )" + "Ardalis.GuardClauses": "[4.6.0, )", + "System.IO.Abstractions": "[21.3.1, )" } }, "monai.deploy.informaticsgateway.configuration": { @@ -914,26 +897,26 @@ "dependencies": { "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", - "NLog": "[5.3.2, )" + "NLog": "[5.4.0, )" } }, "monai.deploy.informaticsgateway.plugins.remoteappexecution": { "type": "Project", "dependencies": { - "Microsoft.EntityFrameworkCore": "[8.0.6, )", - "Microsoft.EntityFrameworkCore.Design": "[8.0.6, )", - "Microsoft.EntityFrameworkCore.Relational": "[8.0.6, )", - "Microsoft.EntityFrameworkCore.Sqlite": "[8.0.6, )", + "Microsoft.EntityFrameworkCore": "[8.0.14, )", + "Microsoft.EntityFrameworkCore.Design": "[8.0.14, )", + "Microsoft.EntityFrameworkCore.Relational": "[8.0.14, )", + "Microsoft.EntityFrameworkCore.Sqlite": "[8.0.14, )", "Microsoft.Extensions.Configuration": "[8.0.0, )", - "Microsoft.Extensions.Configuration.FileExtensions": "[8.0.0, )", - "Microsoft.Extensions.Configuration.Json": "[8.0.0, )", + "Microsoft.Extensions.Configuration.FileExtensions": "[8.0.1, )", + "Microsoft.Extensions.Configuration.Json": "[8.0.1, )", "Microsoft.Extensions.Options.ConfigurationExtensions": "[8.0.0, )", "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", "Monai.Deploy.InformaticsGateway.Database.Api": "[1.0.0, )", - "MongoDB.Driver": "[2.25.0, )", - "NLog": "[5.3.2, )", - "Polly": "[8.4.0, )" + "MongoDB.Driver": "[2.30.0, )", + "NLog": "[5.4.0, )", + "Polly": "[8.5.2, )" } } } diff --git a/src/Plug-ins/RemoteAppExecution/packages.lock.json b/src/Plug-ins/RemoteAppExecution/packages.lock.json index f8d6cbb2..8aba402f 100644 --- a/src/Plug-ins/RemoteAppExecution/packages.lock.json +++ b/src/Plug-ins/RemoteAppExecution/packages.lock.json @@ -4,46 +4,46 @@ "net8.0": { "Microsoft.EntityFrameworkCore": { "type": "Direct", - "requested": "[8.0.6, )", - "resolved": "8.0.6", - "contentHash": "Ms5e5QuBAjVIuQsGumeLvkgMiOpnj6wxPvwBIoe1NfTkseWK4NZYztnhgDlpkCPkrUmJEXLv69kl349Ours30Q==", + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "HNn+NPKCm7rR7ij7IRCCbuImaMulFJGloyIbMwi3Ews77RsthM8gxpTZciFLgRYPsBtszKpdIClEwnWmP0vjUg==", "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "8.0.6", - "Microsoft.EntityFrameworkCore.Analyzers": "8.0.6", - "Microsoft.Extensions.Caching.Memory": "8.0.0", - "Microsoft.Extensions.Logging": "8.0.0" + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.14", + "Microsoft.EntityFrameworkCore.Analyzers": "8.0.14", + "Microsoft.Extensions.Caching.Memory": "8.0.1", + "Microsoft.Extensions.Logging": "8.0.1" } }, "Microsoft.EntityFrameworkCore.Design": { "type": "Direct", - "requested": "[8.0.6, )", - "resolved": "8.0.6", - "contentHash": "4OT+mH+8EB4Kfn1ENpDx2Ssx459j200gvdhDOKq5lkHmHzkRpmEDKS5GfqaLZvBLJKWu1FVGQ7Wnczcjb0hX4g==", + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "ncCvbJYGXK7eSOVqfQNXLaxMWKGaKSYX1VJZjyJXg3IxxmF50B8p/isprgrVLR+SlQwTG1lmhPAPn0dOvCqlrw==", "dependencies": { "Humanizer.Core": "2.14.1", "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0", - "Microsoft.EntityFrameworkCore.Relational": "8.0.6", - "Microsoft.Extensions.DependencyModel": "8.0.0", + "Microsoft.EntityFrameworkCore.Relational": "8.0.14", + "Microsoft.Extensions.DependencyModel": "8.0.2", "Mono.TextTemplating": "2.2.1" } }, "Microsoft.EntityFrameworkCore.Relational": { "type": "Direct", - "requested": "[8.0.6, )", - "resolved": "8.0.6", - "contentHash": "chhfmLusCGLGvNYtvMji6KGQlduPDnJsStG/LjS8qJhFWJDDzTZpSr2LHowewcxMrMo/Axc6Jwe+WwSi/vlkTg==", + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "cPEeIk9nFO3+hxj9tp5AvTFdcTZkVPJCOFUiagbf37KhPGtiG0ZWpl15xOzLYTDAYjF5kxH/jcuDYGlLACJEmA==", "dependencies": { - "Microsoft.EntityFrameworkCore": "8.0.6", + "Microsoft.EntityFrameworkCore": "8.0.14", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" } }, "Microsoft.EntityFrameworkCore.Sqlite": { "type": "Direct", - "requested": "[8.0.6, )", - "resolved": "8.0.6", - "contentHash": "nC4cZN4zReTb22qd9WDU0eDmlXvkyf2g2pqQ3VIHJbkpJcdWSY/PDgwGpbpShsVcAjXbkjGiUcv9aGwa61xQPw==", + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "iqrhkOirZ9mm3Yu+ut9698VDn6WSykfr9NMECIe6gObUZLxAsg28f1JmIjx2n4pKFm5Uz5sYJ3k4AUnrJbgUag==", "dependencies": { - "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.6", + "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.14", "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" } }, @@ -59,9 +59,9 @@ }, "Microsoft.Extensions.Configuration.FileExtensions": { "type": "Direct", - "requested": "[8.0.0, )", - "resolved": "8.0.0", - "contentHash": "McP+Lz/EKwvtCv48z0YImw+L1gi1gy5rHhNaNIY2CrjloV+XY8gydT8DjMR6zWeL13AFK+DioVpppwAuO1Gi1w==", + "requested": "[8.0.1, )", + "resolved": "8.0.1", + "contentHash": "EJzSNO9oaAXnTdtdNO6npPRsIIeZCBSNmdQ091VDO7fBiOtJAAeEq6dtrVXIi3ZyjC5XRSAtVvF8SzcneRHqKQ==", "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", @@ -72,15 +72,14 @@ }, "Microsoft.Extensions.Configuration.Json": { "type": "Direct", - "requested": "[8.0.0, )", - "resolved": "8.0.0", - "contentHash": "C2wqUoh9OmRL1akaCcKSTmRU8z0kckfImG7zLNI8uyi47Lp+zd5LWAD17waPQEqCz3ioWOCrFUo+JJuoeZLOBw==", + "requested": "[8.0.1, )", + "resolved": "8.0.1", + "contentHash": "L89DLNuimOghjV3tLx0ArFDwVEJD6+uGB3BMCMX01kaLzXkaXHb2021xOMl2QOxUxbdePKUZsUY7n2UUkycjRg==", "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "System.Text.Json": "8.0.0" + "Microsoft.Extensions.Configuration.FileExtensions": "8.0.1", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0" } }, "Microsoft.Extensions.Options.ConfigurationExtensions": { @@ -98,53 +97,53 @@ }, "MongoDB.Driver": { "type": "Direct", - "requested": "[2.25.0, )", - "resolved": "2.25.0", - "contentHash": "dMqnZTV6MuvoEI4yFtSvKJdAoN6NeyAEvG8aoxnrLIVd7bR84QxLgpsM1nhK17qkOcIx/IrpMIfrvp5iMnYGBg==", + "requested": "[2.30.0, )", + "resolved": "2.30.0", + "contentHash": "BCG8cNF0+U3h5f/O9fu3ktrYhoESBDems1w06PExfYrn2KjHBHCBdvBRY1cIbysnZVjQAJjGtFV9XgW+hXt7Hg==", "dependencies": { "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "2.25.0", - "MongoDB.Driver.Core": "2.25.0", - "MongoDB.Libmongocrypt": "1.8.2" + "MongoDB.Bson": "2.30.0", + "MongoDB.Driver.Core": "2.30.0", + "MongoDB.Libmongocrypt": "1.12.0" } }, "NLog": { "type": "Direct", - "requested": "[5.3.2, )", - "resolved": "5.3.2", - "contentHash": "cQRQZuDMjSyMe9EQBnI9v55YAMMz8GAfFd6fFJ6tc/kXnG7Hze8p1I8MgvWSBG6E36wA8vSxRrlm8uSIG+SENg==" + "requested": "[5.4.0, )", + "resolved": "5.4.0", + "contentHash": "LwMcGSW3soF3/SL68rlJN3Eh3ktrAPycC3zZR/07OYBPraZUu0bygEC7kIN10lUQgMXT4s84Fi1chglGdGrQEg==" }, "Polly": { "type": "Direct", - "requested": "[8.4.0, )", - "resolved": "8.4.0", - "contentHash": "z2EeUutuy49jBQyZ5s2FUuTCGx3GCzJ0cJ2HbjWwks94TsC6bKTtAHKBkMZOa/DyYRl5yIX7MshvMTWl1J6RNg==", + "requested": "[8.5.2, )", + "resolved": "8.5.2", + "contentHash": "vbXsGgkG86nG+TOwY+SmtrGrRHmHH0DQaxtILx//d3Dz/ocJ8izSNYzdvU2gEtWa/LDD8zJLvD3HdjEkdlvkhg==", "dependencies": { - "Polly.Core": "8.4.0" + "Polly.Core": "8.5.2" } }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.304.15", - "contentHash": "XLfl4/wuTDWXH73FjGUx5P6Jf6FNLTlyVwWvQ0b/WyBOtZVJxPlCKUTYDn06VdqcLGg3uPP6FKJqnplKsnMHMw==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.105", - "contentHash": "axqpqdA4QZvHzEdGDLk5/IpPQsUTIcnVDulz4uyE+UEeYAHpFcp/BNQxmmIU4Gdv0G5KwQWKiaUaZPuLVN0Esg==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.304.15, 4.0.0)" + "AWSSDK.Core": "[3.7.402.25, 4.0.0)" } }, "CommunityToolkit.HighPerformance": { "type": "Transitive", - "resolved": "8.2.2", - "contentHash": "+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==" + "resolved": "8.3.2", + "contentHash": "1Os81ua0FmIOtiSgOk5C1KBraQ3SDfxs/7BG4qDagm48nGplr//lAVqLH9I2TLDVqRFdhqTUaEITFA5Ho/Ovkw==" }, "DnsClient": { "type": "Transitive", @@ -156,26 +155,26 @@ }, "fo-dicom": { "type": "Transitive", - "resolved": "5.1.2", - "contentHash": "2lM76Vq+GRdwyY3BQiUJ+V6yxdFiOG4ysLJC7qNTxLsq/1pr5ZTTXiIzWQa+uJ0MuKnzzFogV5+meDflsyjs2g==", + "resolved": "5.2.1", + "contentHash": "Oa6raonOj/Xm+a1j3O89OlUXJIF55jLAKjCuXKINYJMJ+hJ/9Al1YOxPs1hut8DBKvHbgYtgdRFtqGNS+Qt6Uw==", "dependencies": { - "CommunityToolkit.HighPerformance": "8.2.2", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "CommunityToolkit.HighPerformance": "8.3.2", + "Microsoft.Bcl.AsyncInterfaces": "8.0.0", "Microsoft.Bcl.HashCode": "1.1.1", "Microsoft.Extensions.DependencyInjection": "6.0.1", "Microsoft.Extensions.Logging": "6.0.0", "Microsoft.Extensions.Options": "6.0.0", "System.Buffers": "4.5.1", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "6.0.9", + "System.Text.Encoding.CodePages": "6.0.1", + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.5", "System.Threading.Channels": "6.0.0" } }, "HL7-dotnetcore": { "type": "Transitive", - "resolved": "2.36.0", - "contentHash": "N1HLMeIqYuY+4O69ItgZJoDBnnpNkK5N2pClceTJ2nFJxsP48iCsA4iz3tm43Yszi4r/vaThoc3UoLBfGP3vKw==" + "resolved": "2.39.1", + "contentHash": "xbgykLlAr644SfYY2oxnpYYto+JFYLuUHt00hRTlhpB+5DiFC2oVSVRA+8yyq/lmkjTNidtTbN9nyK0ft4DSfw==" }, "Humanizer.Core": { "type": "Transitive", @@ -189,8 +188,8 @@ }, "Microsoft.Bcl.AsyncInterfaces": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==" + "resolved": "8.0.0", + "contentHash": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==" }, "Microsoft.Bcl.HashCode": { "type": "Transitive", @@ -248,30 +247,30 @@ }, "Microsoft.Data.Sqlite.Core": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "umhZ0ZF2RI81rGFTnYmCxI+Euj4Aqe/6Y4+8CxN9OVJNGDNIqB5laJ3wxQTU8zXCcm2k9F7FL+/6RVoOT4z1Fw==", + "resolved": "8.0.14", + "contentHash": "MT/9fCazlL4T10BwCQCxvUXOmtU4rR1qDl2mpePFhmuXONafUjXUf8FH94IR79ISxrGVHxsOWvwGzgKi6RSE/g==", "dependencies": { "SQLitePCLRaw.core": "2.1.6" } }, "Microsoft.EntityFrameworkCore.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "X7wSSBNFRuN8j8M9HDYG7rPpEeyhY+PdJZR9rftmgvsZH0eK5+bZ3b3As8iO4rLEpjsBzDnrgSIY6q2F3HQatw==" + "resolved": "8.0.14", + "contentHash": "Om8/jdWyx9eKFkA1YEgxk13KjGIzA8teLgG7iNFunsI2+MT6UT54Eb4t6oe4NQlIaACj5voUe6szVAQe9GKwDA==" }, "Microsoft.EntityFrameworkCore.Analyzers": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "fDNtuQ4lAaPaCOlsrwUck/GvnF4QLeDpMmE1L5QtxZpMSmWfnL2/vk8sDL9OVTWcfprooI9V5MNpIx3/Tq5ehg==" + "resolved": "8.0.14", + "contentHash": "lzNb3s4t5JDMHGoUFuX/f977dFythvmzGFJxvjlhExdiATPKQfquo2NM0uX8Kelfq04jRljpdbRzcsSsK1q9Tw==" }, "Microsoft.EntityFrameworkCore.Sqlite.Core": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "87xfPtqSouxWWdynYZv/rubd0rOUeiN9+XeoMWQzpZm/5svH1TuvzFODGIY0zKuXS18NiOFyHl9N6///eaEs/Q==", + "resolved": "8.0.14", + "contentHash": "TcbHy/SdKTcrxlgx14uicVMqrBTu3SP3STGicR+JzYG4I3mVtsBgqtArt6mmUtA7UZj7sogXJ6EFpSyNsJU8Zg==", "dependencies": { - "Microsoft.Data.Sqlite.Core": "8.0.6", - "Microsoft.EntityFrameworkCore.Relational": "8.0.6", - "Microsoft.Extensions.DependencyModel": "8.0.0" + "Microsoft.Data.Sqlite.Core": "8.0.14", + "Microsoft.EntityFrameworkCore.Relational": "8.0.14", + "Microsoft.Extensions.DependencyModel": "8.0.2" } }, "Microsoft.Extensions.Caching.Abstractions": { @@ -284,13 +283,13 @@ }, "Microsoft.Extensions.Caching.Memory": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==", + "resolved": "8.0.1", + "contentHash": "HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==", "dependencies": { "Microsoft.Extensions.Caching.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", "Microsoft.Extensions.Primitives": "8.0.0" } }, @@ -312,51 +311,46 @@ }, "Microsoft.Extensions.DependencyInjection": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "resolved": "8.0.1", + "contentHash": "BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.DependencyInjection.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==" + "resolved": "8.0.2", + "contentHash": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==" }, "Microsoft.Extensions.DependencyModel": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==", - "dependencies": { - "System.Text.Encodings.Web": "8.0.0", - "System.Text.Json": "8.0.0" - } + "resolved": "8.0.2", + "contentHash": "mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==" }, "Microsoft.Extensions.Diagnostics.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==", + "resolved": "8.0.1", + "contentHash": "elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", - "System.Diagnostics.DiagnosticSource": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "Wtylr3ucMUQ+/6x5ngRtBQ0D0TVloWE3hbwUEhwE16OZHB66uqAEVnEvcAXxW2IFuVAuEHMXX5GebfkbSZQSTw==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.6", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.1", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.14", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.3", "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "GiHK4B5Xsf5YzL73kup2zJoJfDx5RJYBd0LZN6dx8XyOSoZnh7NNrMP+vTLxAJVp//JxHk0KIhBnW9YuFrSVig==" + "resolved": "8.0.14", + "contentHash": "se5sdveMiA3PUOWchOZXY/sGA50MrJ/Mg/G6CdQBtyA4MLySNRilVCi23YT90RAwqvI2uQEk5+buxYdpAfuwpA==" }, "Microsoft.Extensions.FileProviders.Abstractions": { "type": "Transitive", @@ -383,32 +377,32 @@ }, "Microsoft.Extensions.Hosting.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "resolved": "8.0.1", + "contentHash": "nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "resolved": "8.0.1", + "contentHash": "4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==", "dependencies": { - "Microsoft.Extensions.DependencyInjection": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0" + "Microsoft.Extensions.DependencyInjection": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Logging.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Options": { @@ -441,49 +435,49 @@ }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "jchWPuXJC4N9g1jZ7ZPSfbDSBfMmIgFw5w9VqAT5A9USdE/10IMT83wL48KkTbR7eHdphghe06iGKk7IPhYweA==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "21.0.2" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Messaging.RabbitMQ": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "/tj7IO/SHYXNRfxh7iIMms9TurhtCIozZp5lDFvd/WkPgKWZyyyZH8wxkNb9r7jIh/vXkrGJcPCxR30uoET+7g==", + "resolved": "2.0.4", + "contentHash": "tmEERdnqJq1STVGx30+wVyj7AtvtT8K2j/59lSiZ7k58ZdRku601Gs6k1KZ/sfGeobCjaB4gI7GROxK+lN6gbg==", "dependencies": { - "Monai.Deploy.Messaging": "2.0.3", - "Polly": "8.4.0", + "Monai.Deploy.Messaging": "2.0.4", + "Polly": "8.5.2", "RabbitMQ.Client": "6.8.1" } }, "Monai.Deploy.Storage": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "ceVSHBPDMxWV7C6TLBoJmJt3X0RQmdPnm+9NU17Zs0TGE58QvSEHn4GJODtK9+ncgUJICjBhPFcNHV40ybEepQ==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.105", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", - "Monai.Deploy.Storage.S3Policy": "1.0.1", - "System.IO.Abstractions": "21.0.2" + "AWSSDK.SecurityToken": "3.7.401.68", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", + "Monai.Deploy.Storage.S3Policy": "1.0.2", + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage.S3Policy": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "mgLlLRphh+vrVKen72jfEzBcoOhAzCjavGMUzWIjIFh5avmb2RJNbQERLSISOCjWnqPscc/xSPKFUUpLMOLdYw==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, "MongoDB.Bson": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "xQx/qtC2nu9oGiyNqAwfiDpUMweLi0nID677cyKykpwmj5AVMrnd//UwmcmuX95178DeY6rf7cjmA613TQXPiA==", + "resolved": "2.30.0", + "contentHash": "Gg0TQUT3IEntcqdug5a9P6d8iwL5CqOpQjVBCq1hxTbkjxdGdY6a2CPv7II44AO9GYUnORYsS6dDME2b7aqYyg==", "dependencies": { "System.Memory": "4.5.5", "System.Runtime.CompilerServices.Unsafe": "5.0.0" @@ -491,14 +485,14 @@ }, "MongoDB.Driver.Core": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "oN4nLgO5HQEThTg/zqeoHqaO2+q64DBVb4r7BvhaFb0p0TM9jZKnCKvh1EA8d9E9swIz0CgvMrvL1mPyRCZzag==", + "resolved": "2.30.0", + "contentHash": "oepDgu24lo44SljuHmIQ99x6jHISnMC4tLfzQGniQg39xiMD8nxalm1HM9RDZcuZbbWa4F6YLt2AIhWkny3XWA==", "dependencies": { "AWSSDK.SecurityToken": "3.7.100.14", "DnsClient": "1.6.1", "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "2.25.0", - "MongoDB.Libmongocrypt": "1.8.2", + "MongoDB.Bson": "2.30.0", + "MongoDB.Libmongocrypt": "1.12.0", "SharpCompress": "0.30.1", "Snappier": "1.0.0", "System.Buffers": "4.5.1", @@ -507,8 +501,8 @@ }, "MongoDB.Libmongocrypt": { "type": "Transitive", - "resolved": "1.8.2", - "contentHash": "z/8JCULSHM1+mzkau0ivIkU9kIn8JEFFSkmYTSaMaWMMHt96JjUtMKuXxeGNGSnHZ5290ZPKIlQfjoWFk2sKog==" + "resolved": "1.12.0", + "contentHash": "B1X51jrtNacKvxKoaqWeknYeJfQS5aWf6BmVLT5JZerz3AUXFzv8edPskJYqBc3kLy1J2PWzMqqsnyb9g8FtcA==" }, "Mono.TextTemplating": { "type": "Transitive", @@ -525,8 +519,8 @@ }, "Polly.Core": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "3AZxuP//pxOeBo9tQs7/tz4Z5TTbu4BYfjpaXZD0JYKJo98ngN9TMUz1nybh4k0ykWkMBpGZALV/AmVIE3ew7A==" + "resolved": "8.5.2", + "contentHash": "1MJKdxv4zwDmiWvYvVN24DsrWUfgQ4F83voH8bhbtLMdPuGy8CfTUzsgQhvyrl1a7hrM6f/ydwLVdVUI0xooUw==" }, "RabbitMQ.Client": { "type": "Transitive", @@ -643,18 +637,13 @@ "System.Composition.Runtime": "6.0.0" } }, - "System.Diagnostics.DiagnosticSource": { - "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" - }, "System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ewYQGK0kzOpfiYCF0P0nqPAnKqGhqiXAWDFeMtQtwJyERA2s7nLx7KEALwDvIFjZvX6677IsPREoLIU9oBOQvA==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "System.IO.Pipelines": { @@ -696,11 +685,8 @@ }, "System.Text.Encoding.CodePages": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "6.0.1", + "contentHash": "OV04vEWTSDXzaAJCjylOIdjB7Z7QTYQcz4/ATZSiG8PLkZLsbtaADj0Ydj4FdFnqq4PAwEA7SuILE+6ka4cn6A==" }, "System.Text.Encodings.Web": { "type": "Transitive", @@ -709,11 +695,8 @@ }, "System.Text.Json": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", - "dependencies": { - "System.Text.Encodings.Web": "8.0.0" - } + "resolved": "8.0.5", + "contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==" }, "System.Threading.Channels": { "type": "Transitive", @@ -722,15 +705,15 @@ }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ViPtOy4lAlmWq9GDEwiE5C9XSgDGHUWMRvVvruI38pbikUXkgu7xnCVW7PYdQOjS+iWWcQHt+U7oyPedfnWSHg==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ii6Xgru3ozRaLezwE/lKAPTdE3ES+S3P3ul+QrMxIP10GN+LF0JAi4aWqb8lxzEAwBMSAeK/QipEpVt4KYlTOg==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "ZstdSharp.Port": { @@ -741,21 +724,21 @@ "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "HL7-dotnetcore": "[2.36.0, )", + "HL7-dotnetcore": "[2.39.1, )", "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.6, )", + "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.14, )", "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Messaging.RabbitMQ": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )", - "fo-dicom": "[5.1.2, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Messaging.RabbitMQ": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )", + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )", - "System.IO.Abstractions": "[21.0.2, )" + "Ardalis.GuardClauses": "[4.6.0, )", + "System.IO.Abstractions": "[21.3.1, )" } }, "monai.deploy.informaticsgateway.configuration": { @@ -770,7 +753,7 @@ "dependencies": { "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", - "NLog": "[5.3.2, )" + "NLog": "[5.4.0, )" } } } diff --git a/src/nuget.txt b/src/nuget.txt new file mode 100644 index 00000000..30169738 --- /dev/null +++ b/src/nuget.txt @@ -0,0 +1,2028 @@ +Project 'Monai.Deploy.InformaticsGateway' has the following package references + [net8.0]: + Top-level Package Requested Resolved + > DotNext.Threading 5.5.0 5.5.0 + > HL7-dotnetcore 2.39.1 2.39.1 + > Microsoft.EntityFrameworkCore.Design 8.0.14 8.0.14 + > Monai.Deploy.Messaging.RabbitMQ 2.0.4 2.0.4 + > Monai.Deploy.Security 1.0.1 1.0.1 + > Monai.Deploy.Storage.MinIO 1.0.2 1.0.2 + > NLog.Web.AspNetCore 5.4.0 5.4.0 + > Swashbuckle.AspNetCore 8.0.0 8.0.0 + + Transitive Package Resolved + > Ardalis.GuardClauses 4.6.0 + > AspNetCore.HealthChecks.MongoDb 8.1.0 + > AWSSDK.Core 3.7.402.25 + > AWSSDK.SecurityToken 3.7.401.68 + > CommunityToolkit.HighPerformance 8.3.2 + > DnsClient 1.6.1 + > DotNext 5.3.1 + > fo-dicom 5.2.1 + > Humanizer.Core 2.14.1 + > Macross.Json.Extensions 3.0.0 + > Microsoft.AspNetCore.Authentication.JwtBearer 8.0.14 + > Microsoft.Bcl.AsyncInterfaces 8.0.0 + > Microsoft.Bcl.HashCode 1.1.1 + > Microsoft.CodeAnalysis.Analyzers 3.3.3 + > Microsoft.CodeAnalysis.Common 4.5.0 + > Microsoft.CodeAnalysis.CSharp 4.5.0 + > Microsoft.CodeAnalysis.CSharp.Workspaces 4.5.0 + > Microsoft.CodeAnalysis.Workspaces.Common 4.5.0 + > Microsoft.Data.Sqlite.Core 8.0.14 + > Microsoft.EntityFrameworkCore 8.0.14 + > Microsoft.EntityFrameworkCore.Abstractions 8.0.14 + > Microsoft.EntityFrameworkCore.Analyzers 8.0.14 + > Microsoft.EntityFrameworkCore.Relational 8.0.14 + > Microsoft.EntityFrameworkCore.Sqlite 8.0.14 + > Microsoft.EntityFrameworkCore.Sqlite.Core 8.0.14 + > Microsoft.EntityFrameworkCore.Tools 8.0.14 + > Microsoft.Extensions.ApiDescription.Server 6.0.5 + > Microsoft.Extensions.Caching.Abstractions 8.0.0 + > Microsoft.Extensions.Caching.Memory 8.0.1 + > Microsoft.Extensions.Configuration 8.0.0 + > Microsoft.Extensions.Configuration.Abstractions 8.0.0 + > Microsoft.Extensions.Configuration.Binder 8.0.2 + > Microsoft.Extensions.Configuration.FileExtensions 8.0.1 + > Microsoft.Extensions.Configuration.Json 8.0.1 + > Microsoft.Extensions.DependencyInjection 8.0.1 + > Microsoft.Extensions.DependencyInjection.Abstractions 8.0.2 + > Microsoft.Extensions.DependencyModel 8.0.2 + > Microsoft.Extensions.Diagnostics.Abstractions 8.0.1 + > Microsoft.Extensions.Diagnostics.HealthChecks 8.0.14 + > Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.14 + > Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.14 + > Microsoft.Extensions.FileProviders.Abstractions 8.0.0 + > Microsoft.Extensions.FileProviders.Physical 8.0.0 + > Microsoft.Extensions.FileSystemGlobbing 8.0.0 + > Microsoft.Extensions.Hosting.Abstractions 8.0.1 + > Microsoft.Extensions.Logging 8.0.1 + > Microsoft.Extensions.Logging.Abstractions 8.0.3 + > Microsoft.Extensions.Logging.Configuration 8.0.1 + > Microsoft.Extensions.Options 8.0.2 + > Microsoft.Extensions.Options.ConfigurationExtensions 8.0.0 + > Microsoft.Extensions.Primitives 8.0.0 + > Microsoft.IdentityModel.Abstractions 7.1.2 + > Microsoft.IdentityModel.JsonWebTokens 7.1.2 + > Microsoft.IdentityModel.Logging 7.1.2 + > Microsoft.IdentityModel.Protocols 7.1.2 + > Microsoft.IdentityModel.Protocols.OpenIdConnect 7.1.2 + > Microsoft.IdentityModel.Tokens 7.1.2 + > Microsoft.NETCore.Platforms 5.0.0 + > Microsoft.OpenApi 1.6.23 + > Microsoft.Win32.Registry 5.0.0 + > Minio 6.0.2 + > Monai.Deploy.Messaging 2.0.4 + > Monai.Deploy.Storage 1.0.2 + > Monai.Deploy.Storage.S3Policy 1.0.2 + > MongoDB.Bson 2.30.0 + > MongoDB.Driver 2.30.0 + > MongoDB.Driver.Core 2.30.0 + > MongoDB.Libmongocrypt 1.12.0 + > Mono.TextTemplating 2.2.1 + > Newtonsoft.Json 13.0.3 + > NLog 5.4.0 + > NLog.Extensions.Logging 5.4.0 + > Polly 8.5.2 + > Polly.Core 8.5.2 + > RabbitMQ.Client 6.8.1 + > SharpCompress 0.30.1 + > Snappier 1.0.0 + > SQLitePCLRaw.bundle_e_sqlite3 2.1.6 + > SQLitePCLRaw.core 2.1.6 + > SQLitePCLRaw.lib.e_sqlite3 2.1.6 + > SQLitePCLRaw.provider.e_sqlite3 2.1.6 + > Swashbuckle.AspNetCore.Swagger 8.0.0 + > Swashbuckle.AspNetCore.SwaggerGen 8.0.0 + > Swashbuckle.AspNetCore.SwaggerUI 8.0.0 + > System.Buffers 4.5.1 + > System.CodeDom 4.4.0 + > System.Collections.Immutable 6.0.0 + > System.Composition 6.0.0 + > System.Composition.AttributedModel 6.0.0 + > System.Composition.Convention 6.0.0 + > System.Composition.Hosting 6.0.0 + > System.Composition.Runtime 6.0.0 + > System.Composition.TypedParts 6.0.0 + > System.IdentityModel.Tokens.Jwt 7.1.2 + > System.IO.Abstractions 21.3.1 + > System.IO.Hashing 8.0.0 + > System.IO.Pipelines 6.0.3 + > System.Memory 4.5.5 + > System.Reactive 6.0.0 + > System.Reflection.Metadata 6.0.1 + > System.Runtime.CompilerServices.Unsafe 6.0.0 + > System.Security.AccessControl 5.0.0 + > System.Security.Principal.Windows 5.0.0 + > System.Text.Encoding.CodePages 6.0.1 + > System.Text.Encodings.Web 8.0.0 + > System.Text.Json 8.0.5 + > System.Threading.Channels 8.0.0 + > TestableIO.System.IO.Abstractions 21.3.1 + > TestableIO.System.IO.Abstractions.Wrappers 21.3.1 + > ZstdSharp.Port 0.7.3 + +Project 'Monai.Deploy.InformaticsGateway.Api' has the following package references + [net8.0]: + Top-level Package Requested Resolved + > fo-dicom 5.2.1 5.2.1 + > HL7-dotnetcore 2.36.0 2.36.0 + > Macross.Json.Extensions 3.0.0 3.0.0 + > Microsoft.EntityFrameworkCore.Abstractions 8.0.14 8.0.14 + > Microsoft.NET.ILLink.Tasks (A) [8.0.14, ) 8.0.14 + > Monai.Deploy.Messaging 2.0.4 2.0.4 + > Monai.Deploy.Messaging.RabbitMQ 2.0.3 2.0.3 + > Monai.Deploy.Storage 1.0.2 1.0.2 + + Transitive Package Resolved + > Ardalis.GuardClauses 4.6.0 + > AWSSDK.Core 3.7.402.25 + > AWSSDK.SecurityToken 3.7.401.68 + > CommunityToolkit.HighPerformance 8.3.2 + > Microsoft.Bcl.AsyncInterfaces 8.0.0 + > Microsoft.Bcl.HashCode 1.1.1 + > Microsoft.Extensions.Configuration.Abstractions 8.0.0 + > Microsoft.Extensions.DependencyInjection 6.0.1 + > Microsoft.Extensions.DependencyInjection.Abstractions 8.0.2 + > Microsoft.Extensions.Diagnostics.Abstractions 8.0.1 + > Microsoft.Extensions.Diagnostics.HealthChecks 8.0.14 + > Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.14 + > Microsoft.Extensions.FileProviders.Abstractions 8.0.0 + > Microsoft.Extensions.Hosting.Abstractions 8.0.1 + > Microsoft.Extensions.Logging 6.0.0 + > Microsoft.Extensions.Logging.Abstractions 8.0.3 + > Microsoft.Extensions.Options 8.0.2 + > Microsoft.Extensions.Primitives 8.0.0 + > Monai.Deploy.Storage.S3Policy 1.0.2 + > Newtonsoft.Json 13.0.3 + > Polly 8.4.0 + > Polly.Core 8.4.0 + > RabbitMQ.Client 6.8.1 + > System.Buffers 4.5.1 + > System.Diagnostics.DiagnosticSource 6.0.0 + > System.IO.Abstractions 21.3.1 + > System.Memory 4.5.5 + > System.Runtime.CompilerServices.Unsafe 6.0.0 + > System.Text.Encoding.CodePages 6.0.1 + > System.Text.Encodings.Web 8.0.0 + > System.Text.Json 8.0.5 + > System.Threading.Channels 7.0.0 + > TestableIO.System.IO.Abstractions 21.3.1 + > TestableIO.System.IO.Abstractions.Wrappers 21.3.1 + +Project 'Monai.Deploy.InformaticsGateway.Configuration' has the following package references + [net8.0]: + Top-level Package Requested Resolved + > Microsoft.NET.ILLink.Tasks (A) [8.0.14, ) 8.0.14 + + Transitive Package Resolved + > Ardalis.GuardClauses 4.6.0 + > AWSSDK.Core 3.7.402.25 + > AWSSDK.SecurityToken 3.7.401.68 + > CommunityToolkit.HighPerformance 8.3.2 + > fo-dicom 5.2.1 + > HL7-dotnetcore 2.36.0 + > Macross.Json.Extensions 3.0.0 + > Microsoft.Bcl.AsyncInterfaces 8.0.0 + > Microsoft.Bcl.HashCode 1.1.1 + > Microsoft.EntityFrameworkCore.Abstractions 8.0.14 + > Microsoft.Extensions.Configuration.Abstractions 8.0.0 + > Microsoft.Extensions.DependencyInjection 6.0.1 + > Microsoft.Extensions.DependencyInjection.Abstractions 8.0.2 + > Microsoft.Extensions.Diagnostics.Abstractions 8.0.1 + > Microsoft.Extensions.Diagnostics.HealthChecks 8.0.14 + > Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.14 + > Microsoft.Extensions.FileProviders.Abstractions 8.0.0 + > Microsoft.Extensions.Hosting.Abstractions 8.0.1 + > Microsoft.Extensions.Logging 6.0.0 + > Microsoft.Extensions.Logging.Abstractions 8.0.3 + > Microsoft.Extensions.Options 8.0.2 + > Microsoft.Extensions.Primitives 8.0.0 + > Monai.Deploy.Messaging 2.0.4 + > Monai.Deploy.Messaging.RabbitMQ 2.0.3 + > Monai.Deploy.Storage 1.0.2 + > Monai.Deploy.Storage.S3Policy 1.0.2 + > Newtonsoft.Json 13.0.3 + > Polly 8.4.0 + > Polly.Core 8.4.0 + > RabbitMQ.Client 6.8.1 + > System.Buffers 4.5.1 + > System.Diagnostics.DiagnosticSource 6.0.0 + > System.IO.Abstractions 21.3.1 + > System.Memory 4.5.5 + > System.Runtime.CompilerServices.Unsafe 6.0.0 + > System.Text.Encoding.CodePages 6.0.1 + > System.Text.Encodings.Web 8.0.0 + > System.Text.Json 8.0.5 + > System.Threading.Channels 7.0.0 + > TestableIO.System.IO.Abstractions 21.3.1 + > TestableIO.System.IO.Abstractions.Wrappers 21.3.1 + +Project 'Monai.Deploy.InformaticsGateway.Common' has the following package references + [net8.0]: + Top-level Package Requested Resolved + > Ardalis.GuardClauses 4.6.0 4.6.0 + > Microsoft.NET.ILLink.Tasks (A) [8.0.14, ) 8.0.14 + > System.IO.Abstractions 21.0.2 21.0.2 + + Transitive Package Resolved + > TestableIO.System.IO.Abstractions 21.0.2 + > TestableIO.System.IO.Abstractions.Wrappers 21.0.2 + +Project 'Monai.Deploy.InformaticsGateway.Database' has the following package references + [net8.0]: + Top-level Package Requested Resolved + > AspNetCore.HealthChecks.MongoDb 8.1.0 8.1.0 + > Microsoft.EntityFrameworkCore.Tools 8.0.14 8.0.14 + > Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.14 8.0.14 + > Microsoft.Extensions.Options.ConfigurationExtensions 8.0.0 8.0.0 + + Transitive Package Resolved + > Ardalis.GuardClauses 4.6.0 + > AWSSDK.Core 3.7.402.25 + > AWSSDK.SecurityToken 3.7.401.68 + > CommunityToolkit.HighPerformance 8.3.2 + > DnsClient 1.6.1 + > fo-dicom 5.2.1 + > HL7-dotnetcore 2.36.0 + > Humanizer.Core 2.14.1 + > Macross.Json.Extensions 3.0.0 + > Microsoft.Bcl.AsyncInterfaces 8.0.0 + > Microsoft.Bcl.HashCode 1.1.1 + > Microsoft.CodeAnalysis.Analyzers 3.3.3 + > Microsoft.CodeAnalysis.Common 4.5.0 + > Microsoft.CodeAnalysis.CSharp 4.5.0 + > Microsoft.CodeAnalysis.CSharp.Workspaces 4.5.0 + > Microsoft.CodeAnalysis.Workspaces.Common 4.5.0 + > Microsoft.Data.Sqlite.Core 8.0.14 + > Microsoft.EntityFrameworkCore 8.0.14 + > Microsoft.EntityFrameworkCore.Abstractions 8.0.14 + > Microsoft.EntityFrameworkCore.Analyzers 8.0.14 + > Microsoft.EntityFrameworkCore.Design 8.0.14 + > Microsoft.EntityFrameworkCore.Relational 8.0.14 + > Microsoft.EntityFrameworkCore.Sqlite 8.0.14 + > Microsoft.EntityFrameworkCore.Sqlite.Core 8.0.14 + > Microsoft.Extensions.Caching.Abstractions 8.0.0 + > Microsoft.Extensions.Caching.Memory 8.0.1 + > Microsoft.Extensions.Configuration 8.0.0 + > Microsoft.Extensions.Configuration.Abstractions 8.0.0 + > Microsoft.Extensions.Configuration.Binder 8.0.0 + > Microsoft.Extensions.Configuration.FileExtensions 8.0.1 + > Microsoft.Extensions.Configuration.Json 8.0.1 + > Microsoft.Extensions.DependencyInjection 8.0.1 + > Microsoft.Extensions.DependencyInjection.Abstractions 8.0.2 + > Microsoft.Extensions.DependencyModel 8.0.2 + > Microsoft.Extensions.Diagnostics.Abstractions 8.0.1 + > Microsoft.Extensions.Diagnostics.HealthChecks 8.0.14 + > Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.14 + > Microsoft.Extensions.FileProviders.Abstractions 8.0.0 + > Microsoft.Extensions.FileProviders.Physical 8.0.0 + > Microsoft.Extensions.FileSystemGlobbing 8.0.0 + > Microsoft.Extensions.Hosting.Abstractions 8.0.1 + > Microsoft.Extensions.Logging 8.0.1 + > Microsoft.Extensions.Logging.Abstractions 8.0.3 + > Microsoft.Extensions.Options 8.0.2 + > Microsoft.Extensions.Primitives 8.0.0 + > Microsoft.NETCore.Platforms 5.0.0 + > Microsoft.Win32.Registry 5.0.0 + > Monai.Deploy.Messaging 2.0.4 + > Monai.Deploy.Messaging.RabbitMQ 2.0.3 + > Monai.Deploy.Storage 1.0.2 + > Monai.Deploy.Storage.S3Policy 1.0.2 + > MongoDB.Bson 2.30.0 + > MongoDB.Driver 2.30.0 + > MongoDB.Driver.Core 2.30.0 + > MongoDB.Libmongocrypt 1.12.0 + > Mono.TextTemplating 2.2.1 + > Newtonsoft.Json 13.0.3 + > NLog 5.4.0 + > Polly 8.5.2 + > Polly.Core 8.5.2 + > RabbitMQ.Client 6.8.1 + > SharpCompress 0.30.1 + > Snappier 1.0.0 + > SQLitePCLRaw.bundle_e_sqlite3 2.1.6 + > SQLitePCLRaw.core 2.1.6 + > SQLitePCLRaw.lib.e_sqlite3 2.1.6 + > SQLitePCLRaw.provider.e_sqlite3 2.1.6 + > System.Buffers 4.5.1 + > System.CodeDom 4.4.0 + > System.Collections.Immutable 6.0.0 + > System.Composition 6.0.0 + > System.Composition.AttributedModel 6.0.0 + > System.Composition.Convention 6.0.0 + > System.Composition.Hosting 6.0.0 + > System.Composition.Runtime 6.0.0 + > System.Composition.TypedParts 6.0.0 + > System.IO.Abstractions 21.3.1 + > System.IO.Pipelines 6.0.3 + > System.Memory 4.5.5 + > System.Reflection.Metadata 6.0.1 + > System.Runtime.CompilerServices.Unsafe 6.0.0 + > System.Security.AccessControl 5.0.0 + > System.Security.Principal.Windows 5.0.0 + > System.Text.Encoding.CodePages 6.0.1 + > System.Text.Encodings.Web 8.0.0 + > System.Text.Json 8.0.5 + > System.Threading.Channels 7.0.0 + > TestableIO.System.IO.Abstractions 21.3.1 + > TestableIO.System.IO.Abstractions.Wrappers 21.3.1 + > ZstdSharp.Port 0.7.3 + +Project 'Monai.Deploy.InformaticsGateway.DicomWeb.Client' has the following package references + [net8.0]: + Top-level Package Requested Resolved + > fo-dicom 5.2.1 5.2.1 + > Microsoft.NET.ILLink.Tasks (A) [8.0.14, ) 8.0.14 + + Transitive Package Resolved + > Ardalis.GuardClauses 4.6.0 + > CommunityToolkit.HighPerformance 8.3.2 + > Microsoft.Bcl.AsyncInterfaces 8.0.0 + > Microsoft.Bcl.HashCode 1.1.1 + > Microsoft.Extensions.DependencyInjection 6.0.1 + > Microsoft.Extensions.DependencyInjection.Abstractions 6.0.0 + > Microsoft.Extensions.Logging 6.0.0 + > Microsoft.Extensions.Logging.Abstractions 6.0.0 + > Microsoft.Extensions.Options 6.0.0 + > Microsoft.Extensions.Primitives 6.0.0 + > System.Buffers 4.5.1 + > System.Diagnostics.DiagnosticSource 6.0.0 + > System.Runtime.CompilerServices.Unsafe 6.0.0 + > System.Text.Encoding.CodePages 6.0.1 + > System.Text.Encodings.Web 8.0.0 + > System.Text.Json 8.0.5 + > System.Threading.Channels 6.0.0 + +Project 'Monai.Deploy.InformaticsGateway.Api.Test' has the following package references + [net8.0]: + Top-level Package Requested Resolved + > coverlet.collector 6.0.4 6.0.4 + > Microsoft.NET.Test.Sdk 17.13.0 17.13.0 + > System.IO.Abstractions.TestingHelpers 21.3.1 21.3.1 + > xRetry 1.9.0 1.9.0 + > xunit 2.8.1 2.8.1 + > xunit.runner.visualstudio 2.8.1 2.8.1 + + Transitive Package Resolved + > Ardalis.GuardClauses 4.6.0 + > AWSSDK.Core 3.7.402.25 + > AWSSDK.SecurityToken 3.7.401.68 + > CommunityToolkit.HighPerformance 8.3.2 + > fo-dicom 5.2.1 + > HL7-dotnetcore 2.36.0 + > Macross.Json.Extensions 3.0.0 + > Microsoft.Bcl.AsyncInterfaces 8.0.0 + > Microsoft.Bcl.HashCode 1.1.1 + > Microsoft.CodeCoverage 17.13.0 + > Microsoft.EntityFrameworkCore.Abstractions 8.0.14 + > Microsoft.Extensions.Configuration.Abstractions 8.0.0 + > Microsoft.Extensions.DependencyInjection 6.0.1 + > Microsoft.Extensions.DependencyInjection.Abstractions 8.0.2 + > Microsoft.Extensions.Diagnostics.Abstractions 8.0.1 + > Microsoft.Extensions.Diagnostics.HealthChecks 8.0.14 + > Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.14 + > Microsoft.Extensions.FileProviders.Abstractions 8.0.0 + > Microsoft.Extensions.Hosting.Abstractions 8.0.1 + > Microsoft.Extensions.Logging 6.0.0 + > Microsoft.Extensions.Logging.Abstractions 8.0.3 + > Microsoft.Extensions.Options 8.0.2 + > Microsoft.Extensions.Primitives 8.0.0 + > Microsoft.TestPlatform.ObjectModel 17.13.0 + > Microsoft.TestPlatform.TestHost 17.13.0 + > Monai.Deploy.Messaging 2.0.4 + > Monai.Deploy.Messaging.RabbitMQ 2.0.3 + > Monai.Deploy.Storage 1.0.2 + > Monai.Deploy.Storage.S3Policy 1.0.2 + > Newtonsoft.Json 13.0.3 + > Polly 8.4.0 + > Polly.Core 8.4.0 + > RabbitMQ.Client 6.8.1 + > System.Buffers 4.5.1 + > System.Diagnostics.DiagnosticSource 6.0.0 + > System.IO.Abstractions 21.3.1 + > System.Memory 4.5.5 + > System.Reflection.Metadata 1.6.0 + > System.Runtime.CompilerServices.Unsafe 6.0.0 + > System.Text.Encoding.CodePages 6.0.1 + > System.Text.Encodings.Web 8.0.0 + > System.Text.Json 8.0.5 + > System.Threading.Channels 7.0.0 + > TestableIO.System.IO.Abstractions 21.3.1 + > TestableIO.System.IO.Abstractions.TestingHelpers 21.3.1 + > TestableIO.System.IO.Abstractions.Wrappers 21.3.1 + > xunit.abstractions 2.0.3 + > xunit.analyzers 1.14.0 + > xunit.assert 2.8.1 + > xunit.core 2.8.1 + > xunit.extensibility.core 2.8.1 + > xunit.extensibility.execution 2.8.1 + +Project 'Monai.Deploy.InformaticsGateway.Common.Test' has the following package references + [net8.0]: + Top-level Package Requested Resolved + > coverlet.collector 6.0.4 6.0.4 + > Microsoft.NET.Test.Sdk 17.13.0 17.13.0 + > Moq 4.20.70 4.20.70 + > System.IO.Abstractions 21.0.2 21.0.2 + > System.IO.Abstractions.TestingHelpers 21.3.1 21.3.1 + > xunit 2.8.1 2.8.1 + > xunit.runner.visualstudio 2.8.1 2.8.1 + + Transitive Package Resolved + > Ardalis.GuardClauses 4.6.0 + > Castle.Core 5.1.1 + > Microsoft.CodeCoverage 17.13.0 + > Microsoft.TestPlatform.ObjectModel 17.13.0 + > Microsoft.TestPlatform.TestHost 17.13.0 + > Newtonsoft.Json 13.0.1 + > System.Diagnostics.EventLog 6.0.0 + > System.Reflection.Metadata 1.6.0 + > TestableIO.System.IO.Abstractions 21.3.1 + > TestableIO.System.IO.Abstractions.TestingHelpers 21.3.1 + > TestableIO.System.IO.Abstractions.Wrappers 21.3.1 + > xunit.abstractions 2.0.3 + > xunit.analyzers 1.14.0 + > xunit.assert 2.8.1 + > xunit.core 2.8.1 + > xunit.extensibility.core 2.8.1 + > xunit.extensibility.execution 2.8.1 + +Project 'Monai.Deploy.InformaticsGateway.Configuration.Test' has the following package references + [net8.0]: + Top-level Package Requested Resolved + > coverlet.collector 6.0.4 6.0.4 + > Microsoft.NET.Test.Sdk 17.13.0 17.13.0 + > Moq 4.20.70 4.20.70 + > System.IO.Abstractions.TestingHelpers 21.3.1 21.3.1 + > xunit 2.8.1 2.8.1 + > xunit.runner.visualstudio 2.8.1 2.8.1 + + Transitive Package Resolved + > Ardalis.GuardClauses 4.6.0 + > AWSSDK.Core 3.7.402.25 + > AWSSDK.SecurityToken 3.7.401.68 + > Castle.Core 5.1.1 + > CommunityToolkit.HighPerformance 8.3.2 + > fo-dicom 5.2.1 + > HL7-dotnetcore 2.36.0 + > Macross.Json.Extensions 3.0.0 + > Microsoft.Bcl.AsyncInterfaces 8.0.0 + > Microsoft.Bcl.HashCode 1.1.1 + > Microsoft.CodeCoverage 17.13.0 + > Microsoft.EntityFrameworkCore.Abstractions 8.0.14 + > Microsoft.Extensions.Configuration.Abstractions 8.0.0 + > Microsoft.Extensions.DependencyInjection 6.0.1 + > Microsoft.Extensions.DependencyInjection.Abstractions 8.0.2 + > Microsoft.Extensions.Diagnostics.Abstractions 8.0.1 + > Microsoft.Extensions.Diagnostics.HealthChecks 8.0.14 + > Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.14 + > Microsoft.Extensions.FileProviders.Abstractions 8.0.0 + > Microsoft.Extensions.Hosting.Abstractions 8.0.1 + > Microsoft.Extensions.Logging 6.0.0 + > Microsoft.Extensions.Logging.Abstractions 8.0.3 + > Microsoft.Extensions.Options 8.0.2 + > Microsoft.Extensions.Primitives 8.0.0 + > Microsoft.TestPlatform.ObjectModel 17.13.0 + > Microsoft.TestPlatform.TestHost 17.13.0 + > Monai.Deploy.Messaging 2.0.4 + > Monai.Deploy.Messaging.RabbitMQ 2.0.3 + > Monai.Deploy.Storage 1.0.2 + > Monai.Deploy.Storage.S3Policy 1.0.2 + > Newtonsoft.Json 13.0.3 + > Polly 8.4.0 + > Polly.Core 8.4.0 + > RabbitMQ.Client 6.8.1 + > System.Buffers 4.5.1 + > System.Diagnostics.DiagnosticSource 6.0.0 + > System.Diagnostics.EventLog 6.0.0 + > System.IO.Abstractions 21.3.1 + > System.Memory 4.5.5 + > System.Reflection.Metadata 1.6.0 + > System.Runtime.CompilerServices.Unsafe 6.0.0 + > System.Text.Encoding.CodePages 6.0.1 + > System.Text.Encodings.Web 8.0.0 + > System.Text.Json 8.0.5 + > System.Threading.Channels 7.0.0 + > TestableIO.System.IO.Abstractions 21.3.1 + > TestableIO.System.IO.Abstractions.TestingHelpers 21.3.1 + > TestableIO.System.IO.Abstractions.Wrappers 21.3.1 + > xunit.abstractions 2.0.3 + > xunit.analyzers 1.14.0 + > xunit.assert 2.8.1 + > xunit.core 2.8.1 + > xunit.extensibility.core 2.8.1 + > xunit.extensibility.execution 2.8.1 + +Project 'Monai.Deploy.InformaticsGateway.Test' has the following package references + [net8.0]: + Top-level Package Requested Resolved + > coverlet.collector 6.0.4 6.0.4 + > Microsoft.NET.Test.Sdk 17.13.0 17.13.0 + > Moq 4.20.70 4.20.70 + > System.IO.Abstractions.TestingHelpers 21.3.1 21.3.1 + > xRetry 1.9.0 1.9.0 + > xunit 2.8.1 2.8.1 + > xunit.runner.visualstudio 2.8.1 2.8.1 + + Transitive Package Resolved + > Ardalis.GuardClauses 4.6.0 + > AspNetCore.HealthChecks.MongoDb 8.1.0 + > AWSSDK.Core 3.7.402.25 + > AWSSDK.SecurityToken 3.7.401.68 + > Castle.Core 5.1.1 + > CommunityToolkit.HighPerformance 8.3.2 + > DnsClient 1.6.1 + > DotNext 5.3.1 + > DotNext.Threading 5.5.0 + > fo-dicom 5.2.1 + > HL7-dotnetcore 2.39.1 + > Humanizer.Core 2.14.1 + > Macross.Json.Extensions 3.0.0 + > Microsoft.AspNetCore.Authentication.JwtBearer 8.0.14 + > Microsoft.Bcl.AsyncInterfaces 8.0.0 + > Microsoft.Bcl.HashCode 1.1.1 + > Microsoft.CodeAnalysis.Analyzers 3.3.3 + > Microsoft.CodeAnalysis.Common 4.5.0 + > Microsoft.CodeAnalysis.CSharp 4.5.0 + > Microsoft.CodeAnalysis.CSharp.Workspaces 4.5.0 + > Microsoft.CodeAnalysis.Workspaces.Common 4.5.0 + > Microsoft.CodeCoverage 17.13.0 + > Microsoft.Data.Sqlite.Core 8.0.14 + > Microsoft.EntityFrameworkCore 8.0.14 + > Microsoft.EntityFrameworkCore.Abstractions 8.0.14 + > Microsoft.EntityFrameworkCore.Analyzers 8.0.14 + > Microsoft.EntityFrameworkCore.Design 8.0.14 + > Microsoft.EntityFrameworkCore.Relational 8.0.14 + > Microsoft.EntityFrameworkCore.Sqlite 8.0.14 + > Microsoft.EntityFrameworkCore.Sqlite.Core 8.0.14 + > Microsoft.EntityFrameworkCore.Tools 8.0.14 + > Microsoft.Extensions.ApiDescription.Server 6.0.5 + > Microsoft.Extensions.Caching.Abstractions 8.0.0 + > Microsoft.Extensions.Caching.Memory 8.0.1 + > Microsoft.Extensions.Configuration 8.0.0 + > Microsoft.Extensions.Configuration.Abstractions 8.0.0 + > Microsoft.Extensions.Configuration.Binder 8.0.2 + > Microsoft.Extensions.Configuration.FileExtensions 8.0.1 + > Microsoft.Extensions.Configuration.Json 8.0.1 + > Microsoft.Extensions.DependencyInjection 8.0.1 + > Microsoft.Extensions.DependencyInjection.Abstractions 8.0.2 + > Microsoft.Extensions.DependencyModel 8.0.2 + > Microsoft.Extensions.Diagnostics.Abstractions 8.0.1 + > Microsoft.Extensions.Diagnostics.HealthChecks 8.0.14 + > Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.14 + > Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.14 + > Microsoft.Extensions.FileProviders.Abstractions 8.0.0 + > Microsoft.Extensions.FileProviders.Physical 8.0.0 + > Microsoft.Extensions.FileSystemGlobbing 8.0.0 + > Microsoft.Extensions.Hosting.Abstractions 8.0.1 + > Microsoft.Extensions.Logging 8.0.1 + > Microsoft.Extensions.Logging.Abstractions 8.0.3 + > Microsoft.Extensions.Logging.Configuration 8.0.1 + > Microsoft.Extensions.Options 8.0.2 + > Microsoft.Extensions.Options.ConfigurationExtensions 8.0.0 + > Microsoft.Extensions.Primitives 8.0.0 + > Microsoft.IdentityModel.Abstractions 7.1.2 + > Microsoft.IdentityModel.JsonWebTokens 7.1.2 + > Microsoft.IdentityModel.Logging 7.1.2 + > Microsoft.IdentityModel.Protocols 7.1.2 + > Microsoft.IdentityModel.Protocols.OpenIdConnect 7.1.2 + > Microsoft.IdentityModel.Tokens 7.1.2 + > Microsoft.NETCore.Platforms 5.0.0 + > Microsoft.OpenApi 1.6.23 + > Microsoft.TestPlatform.ObjectModel 17.13.0 + > Microsoft.TestPlatform.TestHost 17.13.0 + > Microsoft.Win32.Registry 5.0.0 + > Minio 6.0.2 + > Monai.Deploy.Messaging 2.0.4 + > Monai.Deploy.Messaging.RabbitMQ 2.0.4 + > Monai.Deploy.Security 1.0.1 + > Monai.Deploy.Storage 1.0.2 + > Monai.Deploy.Storage.MinIO 1.0.2 + > Monai.Deploy.Storage.S3Policy 1.0.2 + > MongoDB.Bson 2.30.0 + > MongoDB.Driver 2.30.0 + > MongoDB.Driver.Core 2.30.0 + > MongoDB.Libmongocrypt 1.12.0 + > Mono.TextTemplating 2.2.1 + > Newtonsoft.Json 13.0.3 + > NLog 5.4.0 + > NLog.Extensions.Logging 5.4.0 + > NLog.Web.AspNetCore 5.4.0 + > Polly 8.5.2 + > Polly.Core 8.5.2 + > RabbitMQ.Client 6.8.1 + > SharpCompress 0.30.1 + > Snappier 1.0.0 + > SQLitePCLRaw.bundle_e_sqlite3 2.1.6 + > SQLitePCLRaw.core 2.1.6 + > SQLitePCLRaw.lib.e_sqlite3 2.1.6 + > SQLitePCLRaw.provider.e_sqlite3 2.1.6 + > Swashbuckle.AspNetCore 8.0.0 + > Swashbuckle.AspNetCore.Swagger 8.0.0 + > Swashbuckle.AspNetCore.SwaggerGen 8.0.0 + > Swashbuckle.AspNetCore.SwaggerUI 8.0.0 + > System.Buffers 4.5.1 + > System.CodeDom 4.4.0 + > System.Collections.Immutable 6.0.0 + > System.Composition 6.0.0 + > System.Composition.AttributedModel 6.0.0 + > System.Composition.Convention 6.0.0 + > System.Composition.Hosting 6.0.0 + > System.Composition.Runtime 6.0.0 + > System.Composition.TypedParts 6.0.0 + > System.Diagnostics.EventLog 6.0.0 + > System.IdentityModel.Tokens.Jwt 7.1.2 + > System.IO.Abstractions 21.3.1 + > System.IO.Hashing 8.0.0 + > System.IO.Pipelines 6.0.3 + > System.Memory 4.5.5 + > System.Reactive 6.0.0 + > System.Reflection.Metadata 6.0.1 + > System.Runtime.CompilerServices.Unsafe 6.0.0 + > System.Security.AccessControl 5.0.0 + > System.Security.Principal.Windows 5.0.0 + > System.Text.Encoding.CodePages 6.0.1 + > System.Text.Encodings.Web 8.0.0 + > System.Text.Json 8.0.5 + > System.Threading.Channels 8.0.0 + > TestableIO.System.IO.Abstractions 21.3.1 + > TestableIO.System.IO.Abstractions.TestingHelpers 21.3.1 + > TestableIO.System.IO.Abstractions.Wrappers 21.3.1 + > xunit.abstractions 2.0.3 + > xunit.analyzers 1.14.0 + > xunit.assert 2.8.1 + > xunit.core 2.8.1 + > xunit.extensibility.core 2.8.1 + > xunit.extensibility.execution 2.8.1 + > ZstdSharp.Port 0.7.3 + +Project 'Monai.Deploy.InformaticsGateway.DicomWeb.Client.Test' has the following package references + [net8.0]: + Top-level Package Requested Resolved + > Ardalis.GuardClauses 4.6.0 4.6.0 + > coverlet.collector 6.0.4 6.0.4 + > Microsoft.NET.Test.Sdk 17.13.0 17.13.0 + > Moq 4.20.70 4.20.70 + > xRetry 1.9.0 1.9.0 + > xunit 2.8.1 2.8.1 + > xunit.runner.visualstudio 2.8.1 2.8.1 + + Transitive Package Resolved + > Castle.Core 5.1.1 + > CommunityToolkit.HighPerformance 8.3.2 + > fo-dicom 5.2.1 + > Microsoft.Bcl.AsyncInterfaces 8.0.0 + > Microsoft.Bcl.HashCode 1.1.1 + > Microsoft.CodeCoverage 17.13.0 + > Microsoft.Extensions.DependencyInjection 6.0.1 + > Microsoft.Extensions.DependencyInjection.Abstractions 6.0.0 + > Microsoft.Extensions.Logging 6.0.0 + > Microsoft.Extensions.Logging.Abstractions 6.0.0 + > Microsoft.Extensions.Options 6.0.0 + > Microsoft.Extensions.Primitives 6.0.0 + > Microsoft.TestPlatform.ObjectModel 17.13.0 + > Microsoft.TestPlatform.TestHost 17.13.0 + > Newtonsoft.Json 13.0.1 + > System.Buffers 4.5.1 + > System.Diagnostics.DiagnosticSource 6.0.0 + > System.Diagnostics.EventLog 6.0.0 + > System.Reflection.Metadata 1.6.0 + > System.Runtime.CompilerServices.Unsafe 6.0.0 + > System.Text.Encoding.CodePages 6.0.1 + > System.Text.Encodings.Web 8.0.0 + > System.Text.Json 8.0.5 + > System.Threading.Channels 6.0.0 + > xunit.abstractions 2.0.3 + > xunit.analyzers 1.14.0 + > xunit.assert 2.8.1 + > xunit.core 2.8.1 + > xunit.extensibility.core 2.8.1 + > xunit.extensibility.execution 2.8.1 + +Project 'Monai.Deploy.InformaticsGateway.CLI' has the following package references + [net8.0]: + Top-level Package Requested Resolved + > Crayon 2.0.69 2.0.69 + > Docker.DotNet 3.125.15 3.125.15 + > Microsoft.Extensions.Http 8.0.0 8.0.0 + > Microsoft.NET.ILLink.Tasks (A) [8.0.14, ) 8.0.14 + > System.CommandLine.Hosting 0.4.0-alpha.22272.1 0.4.0-alpha.22272.1 + > System.CommandLine.Rendering 0.4.0-alpha.22272.1 0.4.0-alpha.22272.1 + + Transitive Package Resolved + > Ardalis.GuardClauses 4.6.0 + > AWSSDK.Core 3.7.402.25 + > AWSSDK.SecurityToken 3.7.401.68 + > CommunityToolkit.HighPerformance 8.3.2 + > fo-dicom 5.2.1 + > HL7-dotnetcore 2.36.0 + > Macross.Json.Extensions 3.0.0 + > Microsoft.Bcl.AsyncInterfaces 8.0.0 + > Microsoft.Bcl.HashCode 1.1.1 + > Microsoft.CSharp 4.7.0 + > Microsoft.EntityFrameworkCore.Abstractions 8.0.14 + > Microsoft.Extensions.Configuration 8.0.0 + > Microsoft.Extensions.Configuration.Abstractions 8.0.0 + > Microsoft.Extensions.Configuration.Binder 8.0.0 + > Microsoft.Extensions.Configuration.CommandLine 6.0.0 + > Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.0 + > Microsoft.Extensions.Configuration.FileExtensions 6.0.0 + > Microsoft.Extensions.Configuration.Json 6.0.0 + > Microsoft.Extensions.Configuration.UserSecrets 6.0.0 + > Microsoft.Extensions.DependencyInjection 8.0.0 + > Microsoft.Extensions.DependencyInjection.Abstractions 8.0.2 + > Microsoft.Extensions.Diagnostics 8.0.0 + > Microsoft.Extensions.Diagnostics.Abstractions 8.0.1 + > Microsoft.Extensions.Diagnostics.HealthChecks 8.0.14 + > Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.14 + > Microsoft.Extensions.FileProviders.Abstractions 8.0.0 + > Microsoft.Extensions.FileProviders.Physical 6.0.0 + > Microsoft.Extensions.FileSystemGlobbing 6.0.0 + > Microsoft.Extensions.Hosting 6.0.0 + > Microsoft.Extensions.Hosting.Abstractions 8.0.1 + > Microsoft.Extensions.Logging 8.0.0 + > Microsoft.Extensions.Logging.Abstractions 8.0.3 + > Microsoft.Extensions.Logging.Configuration 6.0.0 + > Microsoft.Extensions.Logging.Console 6.0.0 + > Microsoft.Extensions.Logging.Debug 6.0.0 + > Microsoft.Extensions.Logging.EventLog 6.0.0 + > Microsoft.Extensions.Logging.EventSource 6.0.0 + > Microsoft.Extensions.Options 8.0.2 + > Microsoft.Extensions.Options.ConfigurationExtensions 8.0.0 + > Microsoft.Extensions.Primitives 8.0.0 + > Monai.Deploy.Messaging 2.0.4 + > Monai.Deploy.Messaging.RabbitMQ 2.0.3 + > Monai.Deploy.Storage 1.0.2 + > Monai.Deploy.Storage.S3Policy 1.0.2 + > Newtonsoft.Json 13.0.3 + > Polly 8.4.0 + > Polly.Core 8.4.0 + > RabbitMQ.Client 6.8.1 + > System.Buffers 4.5.1 + > System.CommandLine 2.0.0-beta4.22272.1 + > System.CommandLine.NamingConventionBinder 2.0.0-beta4.22272.1 + > System.Diagnostics.EventLog 6.0.0 + > System.IO.Abstractions 21.3.1 + > System.Memory 4.5.5 + > System.Runtime.CompilerServices.Unsafe 6.0.0 + > System.Text.Encoding.CodePages 6.0.1 + > System.Text.Encodings.Web 8.0.0 + > System.Text.Json 8.0.5 + > System.Threading.Channels 7.0.0 + > System.Threading.Tasks.Extensions 4.5.4 + > TestableIO.System.IO.Abstractions 21.3.1 + > TestableIO.System.IO.Abstractions.Wrappers 21.3.1 + +Project 'Monai.Deploy.InformaticsGateway.Client' has the following package references + [net8.0]: + Transitive Package Resolved + > Ardalis.GuardClauses 4.6.0 + > AWSSDK.Core 3.7.402.25 + > AWSSDK.SecurityToken 3.7.401.68 + > CommunityToolkit.HighPerformance 8.3.2 + > fo-dicom 5.2.1 + > HL7-dotnetcore 2.36.0 + > Macross.Json.Extensions 3.0.0 + > Microsoft.Bcl.AsyncInterfaces 8.0.0 + > Microsoft.Bcl.HashCode 1.1.1 + > Microsoft.EntityFrameworkCore.Abstractions 8.0.14 + > Microsoft.Extensions.Configuration.Abstractions 8.0.0 + > Microsoft.Extensions.DependencyInjection 6.0.1 + > Microsoft.Extensions.DependencyInjection.Abstractions 8.0.2 + > Microsoft.Extensions.Diagnostics.Abstractions 8.0.1 + > Microsoft.Extensions.Diagnostics.HealthChecks 8.0.14 + > Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.14 + > Microsoft.Extensions.FileProviders.Abstractions 8.0.0 + > Microsoft.Extensions.Hosting.Abstractions 8.0.1 + > Microsoft.Extensions.Logging 6.0.0 + > Microsoft.Extensions.Logging.Abstractions 8.0.3 + > Microsoft.Extensions.Options 8.0.2 + > Microsoft.Extensions.Primitives 8.0.0 + > Monai.Deploy.Messaging 2.0.4 + > Monai.Deploy.Messaging.RabbitMQ 2.0.3 + > Monai.Deploy.Storage 1.0.2 + > Monai.Deploy.Storage.S3Policy 1.0.2 + > Newtonsoft.Json 13.0.3 + > Polly 8.4.0 + > Polly.Core 8.4.0 + > RabbitMQ.Client 6.8.1 + > System.Buffers 4.5.1 + > System.Diagnostics.DiagnosticSource 6.0.0 + > System.IO.Abstractions 21.3.1 + > System.Memory 4.5.5 + > System.Runtime.CompilerServices.Unsafe 6.0.0 + > System.Text.Encoding.CodePages 6.0.1 + > System.Text.Encodings.Web 8.0.0 + > System.Text.Json 8.0.5 + > System.Threading.Channels 7.0.0 + > TestableIO.System.IO.Abstractions 21.3.1 + > TestableIO.System.IO.Abstractions.Wrappers 21.3.1 + +Project 'Monai.Deploy.InformaticsGateway.Client.Common' has the following package references + [net8.0]: + Top-level Package Requested Resolved + > Ardalis.GuardClauses 4.6.0 4.6.0 + > Microsoft.NET.ILLink.Tasks (A) [8.0.14, ) 8.0.14 + +Project 'Monai.Deploy.InformaticsGateway.Client.Common.Test' has the following package references + [net8.0]: + Top-level Package Requested Resolved + > Ardalis.GuardClauses 4.6.0 4.6.0 + > coverlet.collector 6.0.4 6.0.4 + > Microsoft.NET.Test.Sdk 17.13.0 17.13.0 + > Moq 4.20.70 4.20.70 + > xRetry 1.9.0 1.9.0 + > xunit 2.8.1 2.8.1 + > xunit.runner.visualstudio 2.8.1 2.8.1 + + Transitive Package Resolved + > Castle.Core 5.1.1 + > Microsoft.CodeCoverage 17.13.0 + > Microsoft.TestPlatform.ObjectModel 17.13.0 + > Microsoft.TestPlatform.TestHost 17.13.0 + > Newtonsoft.Json 13.0.1 + > System.Diagnostics.EventLog 6.0.0 + > System.Reflection.Metadata 1.6.0 + > xunit.abstractions 2.0.3 + > xunit.analyzers 1.14.0 + > xunit.assert 2.8.1 + > xunit.core 2.8.1 + > xunit.extensibility.core 2.8.1 + > xunit.extensibility.execution 2.8.1 + +Project 'Monai.Deploy.InformaticsGateway.Client.Test' has the following package references + [net8.0]: + Top-level Package Requested Resolved + > coverlet.collector 6.0.4 6.0.4 + > Microsoft.NET.Test.Sdk 17.13.0 17.13.0 + > Moq 4.20.70 4.20.70 + > xunit 2.8.1 2.8.1 + > xunit.runner.visualstudio 2.8.1 2.8.1 + + Transitive Package Resolved + > Ardalis.GuardClauses 4.6.0 + > AspNetCore.HealthChecks.MongoDb 8.1.0 + > AWSSDK.Core 3.7.402.25 + > AWSSDK.SecurityToken 3.7.401.68 + > Castle.Core 5.1.1 + > CommunityToolkit.HighPerformance 8.3.2 + > DnsClient 1.6.1 + > DotNext 5.3.1 + > DotNext.Threading 5.5.0 + > fo-dicom 5.2.1 + > HL7-dotnetcore 2.39.1 + > Humanizer.Core 2.14.1 + > Macross.Json.Extensions 3.0.0 + > Microsoft.AspNetCore.Authentication.JwtBearer 8.0.14 + > Microsoft.Bcl.AsyncInterfaces 8.0.0 + > Microsoft.Bcl.HashCode 1.1.1 + > Microsoft.CodeAnalysis.Analyzers 3.3.3 + > Microsoft.CodeAnalysis.Common 4.5.0 + > Microsoft.CodeAnalysis.CSharp 4.5.0 + > Microsoft.CodeAnalysis.CSharp.Workspaces 4.5.0 + > Microsoft.CodeAnalysis.Workspaces.Common 4.5.0 + > Microsoft.CodeCoverage 17.13.0 + > Microsoft.Data.Sqlite.Core 8.0.14 + > Microsoft.EntityFrameworkCore 8.0.14 + > Microsoft.EntityFrameworkCore.Abstractions 8.0.14 + > Microsoft.EntityFrameworkCore.Analyzers 8.0.14 + > Microsoft.EntityFrameworkCore.Design 8.0.14 + > Microsoft.EntityFrameworkCore.Relational 8.0.14 + > Microsoft.EntityFrameworkCore.Sqlite 8.0.14 + > Microsoft.EntityFrameworkCore.Sqlite.Core 8.0.14 + > Microsoft.EntityFrameworkCore.Tools 8.0.14 + > Microsoft.Extensions.ApiDescription.Server 6.0.5 + > Microsoft.Extensions.Caching.Abstractions 8.0.0 + > Microsoft.Extensions.Caching.Memory 8.0.1 + > Microsoft.Extensions.Configuration 8.0.0 + > Microsoft.Extensions.Configuration.Abstractions 8.0.0 + > Microsoft.Extensions.Configuration.Binder 8.0.2 + > Microsoft.Extensions.Configuration.FileExtensions 8.0.1 + > Microsoft.Extensions.Configuration.Json 8.0.1 + > Microsoft.Extensions.DependencyInjection 8.0.1 + > Microsoft.Extensions.DependencyInjection.Abstractions 8.0.2 + > Microsoft.Extensions.DependencyModel 8.0.2 + > Microsoft.Extensions.Diagnostics.Abstractions 8.0.1 + > Microsoft.Extensions.Diagnostics.HealthChecks 8.0.14 + > Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.14 + > Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.14 + > Microsoft.Extensions.FileProviders.Abstractions 8.0.0 + > Microsoft.Extensions.FileProviders.Physical 8.0.0 + > Microsoft.Extensions.FileSystemGlobbing 8.0.0 + > Microsoft.Extensions.Hosting.Abstractions 8.0.1 + > Microsoft.Extensions.Logging 8.0.1 + > Microsoft.Extensions.Logging.Abstractions 8.0.3 + > Microsoft.Extensions.Logging.Configuration 8.0.1 + > Microsoft.Extensions.Options 8.0.2 + > Microsoft.Extensions.Options.ConfigurationExtensions 8.0.0 + > Microsoft.Extensions.Primitives 8.0.0 + > Microsoft.IdentityModel.Abstractions 7.1.2 + > Microsoft.IdentityModel.JsonWebTokens 7.1.2 + > Microsoft.IdentityModel.Logging 7.1.2 + > Microsoft.IdentityModel.Protocols 7.1.2 + > Microsoft.IdentityModel.Protocols.OpenIdConnect 7.1.2 + > Microsoft.IdentityModel.Tokens 7.1.2 + > Microsoft.NETCore.Platforms 5.0.0 + > Microsoft.OpenApi 1.6.23 + > Microsoft.TestPlatform.ObjectModel 17.13.0 + > Microsoft.TestPlatform.TestHost 17.13.0 + > Microsoft.Win32.Registry 5.0.0 + > Minio 6.0.2 + > Monai.Deploy.Messaging 2.0.4 + > Monai.Deploy.Messaging.RabbitMQ 2.0.4 + > Monai.Deploy.Security 1.0.1 + > Monai.Deploy.Storage 1.0.2 + > Monai.Deploy.Storage.MinIO 1.0.2 + > Monai.Deploy.Storage.S3Policy 1.0.2 + > MongoDB.Bson 2.30.0 + > MongoDB.Driver 2.30.0 + > MongoDB.Driver.Core 2.30.0 + > MongoDB.Libmongocrypt 1.12.0 + > Mono.TextTemplating 2.2.1 + > Newtonsoft.Json 13.0.3 + > NLog 5.4.0 + > NLog.Extensions.Logging 5.4.0 + > NLog.Web.AspNetCore 5.4.0 + > Polly 8.5.2 + > Polly.Core 8.5.2 + > RabbitMQ.Client 6.8.1 + > SharpCompress 0.30.1 + > Snappier 1.0.0 + > SQLitePCLRaw.bundle_e_sqlite3 2.1.6 + > SQLitePCLRaw.core 2.1.6 + > SQLitePCLRaw.lib.e_sqlite3 2.1.6 + > SQLitePCLRaw.provider.e_sqlite3 2.1.6 + > Swashbuckle.AspNetCore 8.0.0 + > Swashbuckle.AspNetCore.Swagger 8.0.0 + > Swashbuckle.AspNetCore.SwaggerGen 8.0.0 + > Swashbuckle.AspNetCore.SwaggerUI 8.0.0 + > System.Buffers 4.5.1 + > System.CodeDom 4.4.0 + > System.Collections.Immutable 6.0.0 + > System.Composition 6.0.0 + > System.Composition.AttributedModel 6.0.0 + > System.Composition.Convention 6.0.0 + > System.Composition.Hosting 6.0.0 + > System.Composition.Runtime 6.0.0 + > System.Composition.TypedParts 6.0.0 + > System.Diagnostics.EventLog 6.0.0 + > System.IdentityModel.Tokens.Jwt 7.1.2 + > System.IO.Abstractions 21.3.1 + > System.IO.Hashing 8.0.0 + > System.IO.Pipelines 6.0.3 + > System.Memory 4.5.5 + > System.Reactive 6.0.0 + > System.Reflection.Metadata 6.0.1 + > System.Runtime.CompilerServices.Unsafe 6.0.0 + > System.Security.AccessControl 5.0.0 + > System.Security.Principal.Windows 5.0.0 + > System.Text.Encoding.CodePages 6.0.1 + > System.Text.Encodings.Web 8.0.0 + > System.Text.Json 8.0.5 + > System.Threading.Channels 8.0.0 + > TestableIO.System.IO.Abstractions 21.3.1 + > TestableIO.System.IO.Abstractions.Wrappers 21.3.1 + > xunit.abstractions 2.0.3 + > xunit.analyzers 1.14.0 + > xunit.assert 2.8.1 + > xunit.core 2.8.1 + > xunit.extensibility.core 2.8.1 + > xunit.extensibility.execution 2.8.1 + > ZstdSharp.Port 0.7.3 + +Project 'Monai.Deploy.InformaticsGateway.CLI.Test' has the following package references + [net8.0]: + Top-level Package Requested Resolved + > coverlet.collector 6.0.4 6.0.4 + > Microsoft.NET.Test.Sdk 17.13.0 17.13.0 + > Moq 4.20.70 4.20.70 + > System.CommandLine.Hosting 0.4.0-alpha.22272.1 0.4.0-alpha.22272.1 + > System.IO.Abstractions.TestingHelpers 21.3.1 21.3.1 + > xRetry 1.9.0 1.9.0 + > xunit 2.8.1 2.8.1 + > xunit.runner.visualstudio 2.8.1 2.8.1 + + Transitive Package Resolved + > Ardalis.GuardClauses 4.6.0 + > AWSSDK.Core 3.7.402.25 + > AWSSDK.SecurityToken 3.7.401.68 + > Castle.Core 5.1.1 + > CommunityToolkit.HighPerformance 8.3.2 + > Crayon 2.0.69 + > Docker.DotNet 3.125.15 + > fo-dicom 5.2.1 + > HL7-dotnetcore 2.36.0 + > Macross.Json.Extensions 3.0.0 + > Microsoft.Bcl.AsyncInterfaces 8.0.0 + > Microsoft.Bcl.HashCode 1.1.1 + > Microsoft.CodeCoverage 17.13.0 + > Microsoft.CSharp 4.7.0 + > Microsoft.EntityFrameworkCore.Abstractions 8.0.14 + > Microsoft.Extensions.Configuration 8.0.0 + > Microsoft.Extensions.Configuration.Abstractions 8.0.0 + > Microsoft.Extensions.Configuration.Binder 8.0.0 + > Microsoft.Extensions.Configuration.CommandLine 6.0.0 + > Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.0 + > Microsoft.Extensions.Configuration.FileExtensions 6.0.0 + > Microsoft.Extensions.Configuration.Json 6.0.0 + > Microsoft.Extensions.Configuration.UserSecrets 6.0.0 + > Microsoft.Extensions.DependencyInjection 8.0.0 + > Microsoft.Extensions.DependencyInjection.Abstractions 8.0.2 + > Microsoft.Extensions.Diagnostics 8.0.0 + > Microsoft.Extensions.Diagnostics.Abstractions 8.0.1 + > Microsoft.Extensions.Diagnostics.HealthChecks 8.0.14 + > Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.14 + > Microsoft.Extensions.FileProviders.Abstractions 8.0.0 + > Microsoft.Extensions.FileProviders.Physical 6.0.0 + > Microsoft.Extensions.FileSystemGlobbing 6.0.0 + > Microsoft.Extensions.Hosting 6.0.0 + > Microsoft.Extensions.Hosting.Abstractions 8.0.1 + > Microsoft.Extensions.Http 8.0.0 + > Microsoft.Extensions.Logging 8.0.0 + > Microsoft.Extensions.Logging.Abstractions 8.0.3 + > Microsoft.Extensions.Logging.Configuration 6.0.0 + > Microsoft.Extensions.Logging.Console 6.0.0 + > Microsoft.Extensions.Logging.Debug 6.0.0 + > Microsoft.Extensions.Logging.EventLog 6.0.0 + > Microsoft.Extensions.Logging.EventSource 6.0.0 + > Microsoft.Extensions.Options 8.0.2 + > Microsoft.Extensions.Options.ConfigurationExtensions 8.0.0 + > Microsoft.Extensions.Primitives 8.0.0 + > Microsoft.TestPlatform.ObjectModel 17.13.0 + > Microsoft.TestPlatform.TestHost 17.13.0 + > Monai.Deploy.Messaging 2.0.4 + > Monai.Deploy.Messaging.RabbitMQ 2.0.3 + > Monai.Deploy.Storage 1.0.2 + > Monai.Deploy.Storage.S3Policy 1.0.2 + > Newtonsoft.Json 13.0.3 + > Polly 8.4.0 + > Polly.Core 8.4.0 + > RabbitMQ.Client 6.8.1 + > System.Buffers 4.5.1 + > System.CommandLine 2.0.0-beta4.22272.1 + > System.CommandLine.NamingConventionBinder 2.0.0-beta4.22272.1 + > System.CommandLine.Rendering 0.4.0-alpha.22272.1 + > System.Diagnostics.EventLog 6.0.0 + > System.IO.Abstractions 21.3.1 + > System.Memory 4.5.5 + > System.Reflection.Metadata 1.6.0 + > System.Runtime.CompilerServices.Unsafe 6.0.0 + > System.Text.Encoding.CodePages 6.0.1 + > System.Text.Encodings.Web 8.0.0 + > System.Text.Json 8.0.5 + > System.Threading.Channels 7.0.0 + > System.Threading.Tasks.Extensions 4.5.4 + > TestableIO.System.IO.Abstractions 21.3.1 + > TestableIO.System.IO.Abstractions.TestingHelpers 21.3.1 + > TestableIO.System.IO.Abstractions.Wrappers 21.3.1 + > xunit.abstractions 2.0.3 + > xunit.analyzers 1.14.0 + > xunit.assert 2.8.1 + > xunit.core 2.8.1 + > xunit.extensibility.core 2.8.1 + > xunit.extensibility.execution 2.8.1 + +Project 'Monai.Deploy.InformaticsGateway.Integration.Test' has the following package references + [net8.0]: + Top-level Package Requested Resolved + > coverlet.collector 6.0.4 6.0.4 + > FluentAssertions 6.12.2 6.12.2 + > fo-dicom 5.2.1 5.2.1 + > HL7-dotnetcore 2.39.1 2.39.1 + > Microsoft.EntityFrameworkCore 8.0.14 8.0.14 + > Microsoft.EntityFrameworkCore.Sqlite 8.0.14 8.0.14 + > Microsoft.Extensions.Configuration 8.0.0 8.0.0 + > Microsoft.Extensions.Configuration.Binder 8.0.2 8.0.2 + > Microsoft.Extensions.Configuration.EnvironmentVariables 8.0.0 8.0.0 + > Microsoft.Extensions.Configuration.Json 8.0.1 8.0.1 + > Microsoft.NET.Test.Sdk 17.13.0 17.13.0 + > Minio 6.0.2 6.0.2 + > Monai.Deploy.Messaging.RabbitMQ 2.0.4 2.0.4 + > Monai.Deploy.Storage.MinIO 1.0.2 1.0.2 + > Moq 4.20.70 4.20.70 + > Polly 8.5.2 8.5.2 + > RabbitMQ.Client 6.8.1 6.8.1 + > SpecFlow.Plus.LivingDocPlugin 3.9.57 3.9.57 + > SpecFlow.xUnit 3.9.74 3.9.74 + > System.Linq.Async 6.0.1 6.0.1 + > xunit 2.8.1 2.8.1 + > xunit.runner.visualstudio 2.8.1 2.8.1 + + Transitive Package Resolved + > Ardalis.GuardClauses 4.6.0 + > AspNetCore.HealthChecks.MongoDb 8.1.0 + > AWSSDK.Core 3.7.402.25 + > AWSSDK.SecurityToken 3.7.401.68 + > BoDi 1.5.0 + > Castle.Core 5.1.1 + > CommunityToolkit.HighPerformance 8.3.2 + > DnsClient 1.6.1 + > DotNext 5.3.1 + > DotNext.Threading 5.5.0 + > Gherkin 19.0.3 + > Humanizer.Core 2.14.1 + > Macross.Json.Extensions 3.0.0 + > Microsoft.AspNetCore.Authentication.JwtBearer 8.0.14 + > Microsoft.Bcl.AsyncInterfaces 8.0.0 + > Microsoft.Bcl.HashCode 1.1.1 + > Microsoft.CodeAnalysis.Analyzers 3.3.3 + > Microsoft.CodeAnalysis.Common 4.5.0 + > Microsoft.CodeAnalysis.CSharp 4.5.0 + > Microsoft.CodeAnalysis.CSharp.Workspaces 4.5.0 + > Microsoft.CodeAnalysis.Workspaces.Common 4.5.0 + > Microsoft.CodeCoverage 17.13.0 + > Microsoft.Data.Sqlite.Core 8.0.14 + > Microsoft.EntityFrameworkCore.Abstractions 8.0.14 + > Microsoft.EntityFrameworkCore.Analyzers 8.0.14 + > Microsoft.EntityFrameworkCore.Design 8.0.14 + > Microsoft.EntityFrameworkCore.Relational 8.0.14 + > Microsoft.EntityFrameworkCore.Sqlite.Core 8.0.14 + > Microsoft.EntityFrameworkCore.Tools 8.0.14 + > Microsoft.Extensions.ApiDescription.Server 6.0.5 + > Microsoft.Extensions.Caching.Abstractions 8.0.0 + > Microsoft.Extensions.Caching.Memory 8.0.1 + > Microsoft.Extensions.Configuration.Abstractions 8.0.0 + > Microsoft.Extensions.Configuration.FileExtensions 8.0.1 + > Microsoft.Extensions.DependencyInjection 8.0.1 + > Microsoft.Extensions.DependencyInjection.Abstractions 8.0.2 + > Microsoft.Extensions.DependencyModel 8.0.2 + > Microsoft.Extensions.Diagnostics.Abstractions 8.0.1 + > Microsoft.Extensions.Diagnostics.HealthChecks 8.0.14 + > Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.14 + > Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore 8.0.14 + > Microsoft.Extensions.FileProviders.Abstractions 8.0.0 + > Microsoft.Extensions.FileProviders.Physical 8.0.0 + > Microsoft.Extensions.FileSystemGlobbing 8.0.0 + > Microsoft.Extensions.Hosting.Abstractions 8.0.1 + > Microsoft.Extensions.Logging 8.0.1 + > Microsoft.Extensions.Logging.Abstractions 8.0.3 + > Microsoft.Extensions.Logging.Configuration 8.0.1 + > Microsoft.Extensions.Options 8.0.2 + > Microsoft.Extensions.Options.ConfigurationExtensions 8.0.0 + > Microsoft.Extensions.Primitives 8.0.0 + > Microsoft.IdentityModel.Abstractions 7.1.2 + > Microsoft.IdentityModel.JsonWebTokens 7.1.2 + > Microsoft.IdentityModel.Logging 7.1.2 + > Microsoft.IdentityModel.Protocols 7.1.2 + > Microsoft.IdentityModel.Protocols.OpenIdConnect 7.1.2 + > Microsoft.IdentityModel.Tokens 7.1.2 + > Microsoft.NETCore.Platforms 5.0.0 + > Microsoft.NETCore.Targets 1.1.0 + > Microsoft.OpenApi 1.6.23 + > Microsoft.TestPlatform.ObjectModel 17.13.0 + > Microsoft.TestPlatform.TestHost 17.13.0 + > Microsoft.Win32.Registry 5.0.0 + > Monai.Deploy.Messaging 2.0.4 + > Monai.Deploy.Security 1.0.1 + > Monai.Deploy.Storage 1.0.2 + > Monai.Deploy.Storage.S3Policy 1.0.2 + > MongoDB.Bson 2.30.0 + > MongoDB.Driver 2.30.0 + > MongoDB.Driver.Core 2.30.0 + > MongoDB.Libmongocrypt 1.12.0 + > Mono.TextTemplating 2.2.1 + > Newtonsoft.Json 13.0.3 + > NLog 5.4.0 + > NLog.Extensions.Logging 5.4.0 + > NLog.Web.AspNetCore 5.4.0 + > Polly.Core 8.5.2 + > runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 + > runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 + > runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 + > runtime.native.System 4.3.0 + > runtime.native.System.Net.Http 4.3.0 + > runtime.native.System.Security.Cryptography.Apple 4.3.0 + > runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 + > runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 + > runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 + > runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple 4.3.0 + > runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 + > runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 + > runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 + > runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 + > runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 + > SharpCompress 0.30.1 + > Snappier 1.0.0 + > SpecFlow 3.9.74 + > SpecFlow.Internal.Json 1.0.8 + > SpecFlow.Tools.MsBuild.Generation 3.9.74 + > SQLitePCLRaw.bundle_e_sqlite3 2.1.6 + > SQLitePCLRaw.core 2.1.6 + > SQLitePCLRaw.lib.e_sqlite3 2.1.6 + > SQLitePCLRaw.provider.e_sqlite3 2.1.6 + > Swashbuckle.AspNetCore 8.0.0 + > Swashbuckle.AspNetCore.Swagger 8.0.0 + > Swashbuckle.AspNetCore.SwaggerGen 8.0.0 + > Swashbuckle.AspNetCore.SwaggerUI 8.0.0 + > System.Buffers 4.5.1 + > System.CodeDom 4.4.0 + > System.Collections 4.3.0 + > System.Collections.Concurrent 4.3.0 + > System.Collections.Immutable 6.0.0 + > System.Composition 6.0.0 + > System.Composition.AttributedModel 6.0.0 + > System.Composition.Convention 6.0.0 + > System.Composition.Hosting 6.0.0 + > System.Composition.Runtime 6.0.0 + > System.Composition.TypedParts 6.0.0 + > System.Configuration.ConfigurationManager 4.5.0 + > System.Diagnostics.Debug 4.3.0 + > System.Diagnostics.DiagnosticSource 4.3.0 + > System.Diagnostics.EventLog 6.0.0 + > System.Diagnostics.Tracing 4.3.0 + > System.Globalization 4.3.0 + > System.Globalization.Calendars 4.3.0 + > System.Globalization.Extensions 4.3.0 + > System.IdentityModel.Tokens.Jwt 7.1.2 + > System.IO 4.3.0 + > System.IO.Abstractions 21.3.1 + > System.IO.FileSystem 4.3.0 + > System.IO.FileSystem.Primitives 4.3.0 + > System.IO.Hashing 8.0.0 + > System.IO.Pipelines 6.0.3 + > System.Linq 4.3.0 + > System.Memory 4.5.5 + > System.Net.Http 4.3.4 + > System.Net.Primitives 4.3.0 + > System.Reactive 6.0.0 + > System.Reflection 4.3.0 + > System.Reflection.Metadata 6.0.1 + > System.Reflection.Primitives 4.3.0 + > System.Resources.ResourceManager 4.3.0 + > System.Runtime 4.3.0 + > System.Runtime.CompilerServices.Unsafe 6.0.0 + > System.Runtime.Extensions 4.3.0 + > System.Runtime.Handles 4.3.0 + > System.Runtime.InteropServices 4.3.0 + > System.Runtime.Loader 4.3.0 + > System.Runtime.Numerics 4.3.0 + > System.Security.AccessControl 5.0.0 + > System.Security.Cryptography.Algorithms 4.3.0 + > System.Security.Cryptography.Cng 4.3.0 + > System.Security.Cryptography.Csp 4.3.0 + > System.Security.Cryptography.Encoding 4.3.0 + > System.Security.Cryptography.OpenSsl 4.3.0 + > System.Security.Cryptography.Primitives 4.3.0 + > System.Security.Cryptography.ProtectedData 4.5.0 + > System.Security.Cryptography.X509Certificates 4.3.0 + > System.Security.Permissions 4.5.0 + > System.Security.Principal.Windows 5.0.0 + > System.Text.Encoding 4.3.0 + > System.Text.Encoding.CodePages 6.0.1 + > System.Text.Encodings.Web 8.0.0 + > System.Text.Json 8.0.5 + > System.Threading 4.3.0 + > System.Threading.Channels 8.0.0 + > System.Threading.Tasks 4.3.0 + > TestableIO.System.IO.Abstractions 21.3.1 + > TestableIO.System.IO.Abstractions.Wrappers 21.3.1 + > Validation 2.4.18 + > xunit.abstractions 2.0.3 + > xunit.analyzers 1.14.0 + > xunit.assert 2.8.1 + > xunit.core 2.8.1 + > xunit.extensibility.core 2.8.1 + > xunit.extensibility.execution 2.8.1 + > Xunit.SkippableFact 1.3.12 + > ZstdSharp.Port 0.7.3 + +Project 'Monai.Deploy.InformaticsGateway.DicomWeb.Client.CLI' has the following package references + [net8.0]: + Top-level Package Requested Resolved + > ConsoleAppFramework 4.2.4 4.2.4 + > Microsoft.NET.ILLink.Tasks (A) [8.0.14, ) 8.0.14 + + Transitive Package Resolved + > Ardalis.GuardClauses 4.5.0 + > CommunityToolkit.HighPerformance 8.3.2 + > fo-dicom 5.2.1 + > Microsoft.Bcl.AsyncInterfaces 8.0.0 + > Microsoft.Bcl.HashCode 1.1.1 + > Microsoft.Extensions.Configuration 6.0.0 + > Microsoft.Extensions.Configuration.Abstractions 6.0.0 + > Microsoft.Extensions.Configuration.Binder 6.0.0 + > Microsoft.Extensions.Configuration.CommandLine 6.0.0 + > Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.0 + > Microsoft.Extensions.Configuration.FileExtensions 6.0.0 + > Microsoft.Extensions.Configuration.Json 6.0.0 + > Microsoft.Extensions.Configuration.UserSecrets 6.0.0 + > Microsoft.Extensions.DependencyInjection 6.0.1 + > Microsoft.Extensions.DependencyInjection.Abstractions 6.0.0 + > Microsoft.Extensions.FileProviders.Abstractions 6.0.0 + > Microsoft.Extensions.FileProviders.Physical 6.0.0 + > Microsoft.Extensions.FileSystemGlobbing 6.0.0 + > Microsoft.Extensions.Hosting 6.0.0 + > Microsoft.Extensions.Hosting.Abstractions 6.0.0 + > Microsoft.Extensions.Logging 6.0.0 + > Microsoft.Extensions.Logging.Abstractions 6.0.0 + > Microsoft.Extensions.Logging.Configuration 6.0.0 + > Microsoft.Extensions.Logging.Console 6.0.0 + > Microsoft.Extensions.Logging.Debug 6.0.0 + > Microsoft.Extensions.Logging.EventLog 6.0.0 + > Microsoft.Extensions.Logging.EventSource 6.0.0 + > Microsoft.Extensions.Options 6.0.0 + > Microsoft.Extensions.Options.ConfigurationExtensions 6.0.0 + > Microsoft.Extensions.Primitives 6.0.0 + > System.Buffers 4.5.1 + > System.Diagnostics.DiagnosticSource 6.0.0 + > System.Diagnostics.EventLog 6.0.0 + > System.Runtime.CompilerServices.Unsafe 6.0.0 + > System.Text.Encoding.CodePages 6.0.1 + > System.Text.Encodings.Web 8.0.0 + > System.Text.Json 8.0.5 + > System.Threading.Channels 6.0.0 + +Project 'Monai.Deploy.InformaticsGateway.Database.EntityFramework' has the following package references + [net8.0]: + Top-level Package Requested Resolved + > Microsoft.EntityFrameworkCore 8.0.14 8.0.14 + > Microsoft.EntityFrameworkCore.Design 8.0.14 8.0.14 + > Microsoft.EntityFrameworkCore.Sqlite 8.0.14 8.0.14 + > Microsoft.Extensions.Configuration.FileExtensions 8.0.1 8.0.1 + > Microsoft.Extensions.Configuration.Json 8.0.1 8.0.1 + > Polly 8.5.2 8.5.2 + + Transitive Package Resolved + > Ardalis.GuardClauses 4.6.0 + > AWSSDK.Core 3.7.402.25 + > AWSSDK.SecurityToken 3.7.401.68 + > CommunityToolkit.HighPerformance 8.3.2 + > fo-dicom 5.2.1 + > HL7-dotnetcore 2.36.0 + > Humanizer.Core 2.14.1 + > Macross.Json.Extensions 3.0.0 + > Microsoft.Bcl.AsyncInterfaces 8.0.0 + > Microsoft.Bcl.HashCode 1.1.1 + > Microsoft.CodeAnalysis.Analyzers 3.3.3 + > Microsoft.CodeAnalysis.Common 4.5.0 + > Microsoft.CodeAnalysis.CSharp 4.5.0 + > Microsoft.CodeAnalysis.CSharp.Workspaces 4.5.0 + > Microsoft.CodeAnalysis.Workspaces.Common 4.5.0 + > Microsoft.Data.Sqlite.Core 8.0.14 + > Microsoft.EntityFrameworkCore.Abstractions 8.0.14 + > Microsoft.EntityFrameworkCore.Analyzers 8.0.14 + > Microsoft.EntityFrameworkCore.Relational 8.0.14 + > Microsoft.EntityFrameworkCore.Sqlite.Core 8.0.14 + > Microsoft.Extensions.Caching.Abstractions 8.0.0 + > Microsoft.Extensions.Caching.Memory 8.0.1 + > Microsoft.Extensions.Configuration 8.0.0 + > Microsoft.Extensions.Configuration.Abstractions 8.0.0 + > Microsoft.Extensions.DependencyInjection 8.0.1 + > Microsoft.Extensions.DependencyInjection.Abstractions 8.0.2 + > Microsoft.Extensions.DependencyModel 8.0.2 + > Microsoft.Extensions.Diagnostics.Abstractions 8.0.1 + > Microsoft.Extensions.Diagnostics.HealthChecks 8.0.14 + > Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.14 + > Microsoft.Extensions.FileProviders.Abstractions 8.0.0 + > Microsoft.Extensions.FileProviders.Physical 8.0.0 + > Microsoft.Extensions.FileSystemGlobbing 8.0.0 + > Microsoft.Extensions.Hosting.Abstractions 8.0.1 + > Microsoft.Extensions.Logging 8.0.1 + > Microsoft.Extensions.Logging.Abstractions 8.0.3 + > Microsoft.Extensions.Options 8.0.2 + > Microsoft.Extensions.Primitives 8.0.0 + > Monai.Deploy.Messaging 2.0.4 + > Monai.Deploy.Messaging.RabbitMQ 2.0.3 + > Monai.Deploy.Storage 1.0.2 + > Monai.Deploy.Storage.S3Policy 1.0.2 + > Mono.TextTemplating 2.2.1 + > Newtonsoft.Json 13.0.3 + > NLog 5.4.0 + > Polly.Core 8.5.2 + > RabbitMQ.Client 6.8.1 + > SQLitePCLRaw.bundle_e_sqlite3 2.1.6 + > SQLitePCLRaw.core 2.1.6 + > SQLitePCLRaw.lib.e_sqlite3 2.1.6 + > SQLitePCLRaw.provider.e_sqlite3 2.1.6 + > System.Buffers 4.5.1 + > System.CodeDom 4.4.0 + > System.Collections.Immutable 6.0.0 + > System.Composition 6.0.0 + > System.Composition.AttributedModel 6.0.0 + > System.Composition.Convention 6.0.0 + > System.Composition.Hosting 6.0.0 + > System.Composition.Runtime 6.0.0 + > System.Composition.TypedParts 6.0.0 + > System.IO.Abstractions 21.3.1 + > System.IO.Pipelines 6.0.3 + > System.Memory 4.5.5 + > System.Reflection.Metadata 6.0.1 + > System.Runtime.CompilerServices.Unsafe 6.0.0 + > System.Text.Encoding.CodePages 6.0.1 + > System.Text.Encodings.Web 8.0.0 + > System.Text.Json 8.0.5 + > System.Threading.Channels 7.0.0 + > TestableIO.System.IO.Abstractions 21.3.1 + > TestableIO.System.IO.Abstractions.Wrappers 21.3.1 + +Project 'Monai.Deploy.InformaticsGateway.Database.Api' has the following package references + [net8.0]: + Top-level Package Requested Resolved + > NLog 5.4.0 5.4.0 + + Transitive Package Resolved + > Ardalis.GuardClauses 4.6.0 + > AWSSDK.Core 3.7.402.25 + > AWSSDK.SecurityToken 3.7.401.68 + > CommunityToolkit.HighPerformance 8.3.2 + > fo-dicom 5.2.1 + > HL7-dotnetcore 2.36.0 + > Macross.Json.Extensions 3.0.0 + > Microsoft.Bcl.AsyncInterfaces 8.0.0 + > Microsoft.Bcl.HashCode 1.1.1 + > Microsoft.EntityFrameworkCore.Abstractions 8.0.14 + > Microsoft.Extensions.Configuration.Abstractions 8.0.0 + > Microsoft.Extensions.DependencyInjection 6.0.1 + > Microsoft.Extensions.DependencyInjection.Abstractions 8.0.2 + > Microsoft.Extensions.Diagnostics.Abstractions 8.0.1 + > Microsoft.Extensions.Diagnostics.HealthChecks 8.0.14 + > Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.14 + > Microsoft.Extensions.FileProviders.Abstractions 8.0.0 + > Microsoft.Extensions.Hosting.Abstractions 8.0.1 + > Microsoft.Extensions.Logging 6.0.0 + > Microsoft.Extensions.Logging.Abstractions 8.0.3 + > Microsoft.Extensions.Options 8.0.2 + > Microsoft.Extensions.Primitives 8.0.0 + > Monai.Deploy.Messaging 2.0.4 + > Monai.Deploy.Messaging.RabbitMQ 2.0.3 + > Monai.Deploy.Storage 1.0.2 + > Monai.Deploy.Storage.S3Policy 1.0.2 + > Newtonsoft.Json 13.0.3 + > Polly 8.4.0 + > Polly.Core 8.4.0 + > RabbitMQ.Client 6.8.1 + > System.Buffers 4.5.1 + > System.Diagnostics.DiagnosticSource 6.0.0 + > System.IO.Abstractions 21.3.1 + > System.Memory 4.5.5 + > System.Runtime.CompilerServices.Unsafe 6.0.0 + > System.Text.Encoding.CodePages 6.0.1 + > System.Text.Encodings.Web 8.0.0 + > System.Text.Json 8.0.5 + > System.Threading.Channels 7.0.0 + > TestableIO.System.IO.Abstractions 21.3.1 + > TestableIO.System.IO.Abstractions.Wrappers 21.3.1 + +Project 'Monai.Deploy.InformaticsGateway.Database.Api.Test' has the following package references + [net8.0]: + Top-level Package Requested Resolved + > coverlet.collector 6.0.4 6.0.4 + > Microsoft.NET.Test.Sdk 17.13.0 17.13.0 + > xunit 2.8.1 2.8.1 + > xunit.runner.visualstudio 2.8.1 2.8.1 + + Transitive Package Resolved + > Ardalis.GuardClauses 4.6.0 + > AWSSDK.Core 3.7.402.25 + > AWSSDK.SecurityToken 3.7.401.68 + > CommunityToolkit.HighPerformance 8.3.2 + > fo-dicom 5.2.1 + > HL7-dotnetcore 2.36.0 + > Macross.Json.Extensions 3.0.0 + > Microsoft.Bcl.AsyncInterfaces 8.0.0 + > Microsoft.Bcl.HashCode 1.1.1 + > Microsoft.CodeCoverage 17.13.0 + > Microsoft.EntityFrameworkCore.Abstractions 8.0.14 + > Microsoft.Extensions.Configuration.Abstractions 8.0.0 + > Microsoft.Extensions.DependencyInjection 6.0.1 + > Microsoft.Extensions.DependencyInjection.Abstractions 8.0.2 + > Microsoft.Extensions.Diagnostics.Abstractions 8.0.1 + > Microsoft.Extensions.Diagnostics.HealthChecks 8.0.14 + > Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.14 + > Microsoft.Extensions.FileProviders.Abstractions 8.0.0 + > Microsoft.Extensions.Hosting.Abstractions 8.0.1 + > Microsoft.Extensions.Logging 6.0.0 + > Microsoft.Extensions.Logging.Abstractions 8.0.3 + > Microsoft.Extensions.Options 8.0.2 + > Microsoft.Extensions.Primitives 8.0.0 + > Microsoft.TestPlatform.ObjectModel 17.13.0 + > Microsoft.TestPlatform.TestHost 17.13.0 + > Monai.Deploy.Messaging 2.0.4 + > Monai.Deploy.Messaging.RabbitMQ 2.0.3 + > Monai.Deploy.Storage 1.0.2 + > Monai.Deploy.Storage.S3Policy 1.0.2 + > Newtonsoft.Json 13.0.3 + > NLog 5.4.0 + > Polly 8.4.0 + > Polly.Core 8.4.0 + > RabbitMQ.Client 6.8.1 + > System.Buffers 4.5.1 + > System.Diagnostics.DiagnosticSource 6.0.0 + > System.IO.Abstractions 21.3.1 + > System.Memory 4.5.5 + > System.Reflection.Metadata 1.6.0 + > System.Runtime.CompilerServices.Unsafe 6.0.0 + > System.Text.Encoding.CodePages 6.0.1 + > System.Text.Encodings.Web 8.0.0 + > System.Text.Json 8.0.5 + > System.Threading.Channels 7.0.0 + > TestableIO.System.IO.Abstractions 21.3.1 + > TestableIO.System.IO.Abstractions.Wrappers 21.3.1 + > xunit.abstractions 2.0.3 + > xunit.analyzers 1.14.0 + > xunit.assert 2.8.1 + > xunit.core 2.8.1 + > xunit.extensibility.core 2.8.1 + > xunit.extensibility.execution 2.8.1 + +Project 'Monai.Deploy.InformaticsGateway.Database.EntityFramework.Test' has the following package references + [net8.0]: + Top-level Package Requested Resolved + > coverlet.collector 6.0.4 6.0.4 + > Microsoft.EntityFrameworkCore.InMemory 8.0.14 8.0.14 + > Microsoft.NET.Test.Sdk 17.13.0 17.13.0 + > Moq 4.20.70 4.20.70 + > xunit 2.8.1 2.8.1 + > xunit.runner.visualstudio 2.8.1 2.8.1 + + Transitive Package Resolved + > Ardalis.GuardClauses 4.6.0 + > AWSSDK.Core 3.7.402.25 + > AWSSDK.SecurityToken 3.7.401.68 + > Castle.Core 5.1.1 + > CommunityToolkit.HighPerformance 8.3.2 + > fo-dicom 5.2.1 + > HL7-dotnetcore 2.36.0 + > Humanizer.Core 2.14.1 + > Macross.Json.Extensions 3.0.0 + > Microsoft.Bcl.AsyncInterfaces 8.0.0 + > Microsoft.Bcl.HashCode 1.1.1 + > Microsoft.CodeAnalysis.Analyzers 3.3.3 + > Microsoft.CodeAnalysis.Common 4.5.0 + > Microsoft.CodeAnalysis.CSharp 4.5.0 + > Microsoft.CodeAnalysis.CSharp.Workspaces 4.5.0 + > Microsoft.CodeAnalysis.Workspaces.Common 4.5.0 + > Microsoft.CodeCoverage 17.13.0 + > Microsoft.Data.Sqlite.Core 8.0.14 + > Microsoft.EntityFrameworkCore 8.0.14 + > Microsoft.EntityFrameworkCore.Abstractions 8.0.14 + > Microsoft.EntityFrameworkCore.Analyzers 8.0.14 + > Microsoft.EntityFrameworkCore.Design 8.0.14 + > Microsoft.EntityFrameworkCore.Relational 8.0.14 + > Microsoft.EntityFrameworkCore.Sqlite 8.0.14 + > Microsoft.EntityFrameworkCore.Sqlite.Core 8.0.14 + > Microsoft.Extensions.Caching.Abstractions 8.0.0 + > Microsoft.Extensions.Caching.Memory 8.0.1 + > Microsoft.Extensions.Configuration 8.0.0 + > Microsoft.Extensions.Configuration.Abstractions 8.0.0 + > Microsoft.Extensions.Configuration.FileExtensions 8.0.1 + > Microsoft.Extensions.Configuration.Json 8.0.1 + > Microsoft.Extensions.DependencyInjection 8.0.1 + > Microsoft.Extensions.DependencyInjection.Abstractions 8.0.2 + > Microsoft.Extensions.DependencyModel 8.0.2 + > Microsoft.Extensions.Diagnostics.Abstractions 8.0.1 + > Microsoft.Extensions.Diagnostics.HealthChecks 8.0.14 + > Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.14 + > Microsoft.Extensions.FileProviders.Abstractions 8.0.0 + > Microsoft.Extensions.FileProviders.Physical 8.0.0 + > Microsoft.Extensions.FileSystemGlobbing 8.0.0 + > Microsoft.Extensions.Hosting.Abstractions 8.0.1 + > Microsoft.Extensions.Logging 8.0.1 + > Microsoft.Extensions.Logging.Abstractions 8.0.3 + > Microsoft.Extensions.Options 8.0.2 + > Microsoft.Extensions.Primitives 8.0.0 + > Microsoft.TestPlatform.ObjectModel 17.13.0 + > Microsoft.TestPlatform.TestHost 17.13.0 + > Monai.Deploy.Messaging 2.0.4 + > Monai.Deploy.Messaging.RabbitMQ 2.0.3 + > Monai.Deploy.Storage 1.0.2 + > Monai.Deploy.Storage.S3Policy 1.0.2 + > Mono.TextTemplating 2.2.1 + > Newtonsoft.Json 13.0.3 + > NLog 5.4.0 + > Polly 8.5.2 + > Polly.Core 8.5.2 + > RabbitMQ.Client 6.8.1 + > SQLitePCLRaw.bundle_e_sqlite3 2.1.6 + > SQLitePCLRaw.core 2.1.6 + > SQLitePCLRaw.lib.e_sqlite3 2.1.6 + > SQLitePCLRaw.provider.e_sqlite3 2.1.6 + > System.Buffers 4.5.1 + > System.CodeDom 4.4.0 + > System.Collections.Immutable 6.0.0 + > System.Composition 6.0.0 + > System.Composition.AttributedModel 6.0.0 + > System.Composition.Convention 6.0.0 + > System.Composition.Hosting 6.0.0 + > System.Composition.Runtime 6.0.0 + > System.Composition.TypedParts 6.0.0 + > System.Diagnostics.EventLog 6.0.0 + > System.IO.Abstractions 21.3.1 + > System.IO.Pipelines 6.0.3 + > System.Memory 4.5.5 + > System.Reflection.Metadata 6.0.1 + > System.Runtime.CompilerServices.Unsafe 6.0.0 + > System.Text.Encoding.CodePages 6.0.1 + > System.Text.Encodings.Web 8.0.0 + > System.Text.Json 8.0.5 + > System.Threading.Channels 7.0.0 + > TestableIO.System.IO.Abstractions 21.3.1 + > TestableIO.System.IO.Abstractions.Wrappers 21.3.1 + > xunit.abstractions 2.0.3 + > xunit.analyzers 1.14.0 + > xunit.assert 2.8.1 + > xunit.core 2.8.1 + > xunit.extensibility.core 2.8.1 + > xunit.extensibility.execution 2.8.1 + +Project 'Monai.Deploy.InformaticsGateway.Database.MongoDB' has the following package references + [net8.0]: + Top-level Package Requested Resolved + > MongoDB.Driver 2.30.0 2.30.0 + > Polly 8.5.2 8.5.2 + + Transitive Package Resolved + > Ardalis.GuardClauses 4.6.0 + > AWSSDK.Core 3.7.402.25 + > AWSSDK.SecurityToken 3.7.401.68 + > CommunityToolkit.HighPerformance 8.3.2 + > DnsClient 1.6.1 + > fo-dicom 5.2.1 + > HL7-dotnetcore 2.36.0 + > Macross.Json.Extensions 3.0.0 + > Microsoft.Bcl.AsyncInterfaces 8.0.0 + > Microsoft.Bcl.HashCode 1.1.1 + > Microsoft.EntityFrameworkCore.Abstractions 8.0.14 + > Microsoft.Extensions.Configuration.Abstractions 8.0.0 + > Microsoft.Extensions.DependencyInjection 6.0.1 + > Microsoft.Extensions.DependencyInjection.Abstractions 8.0.2 + > Microsoft.Extensions.Diagnostics.Abstractions 8.0.1 + > Microsoft.Extensions.Diagnostics.HealthChecks 8.0.14 + > Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.14 + > Microsoft.Extensions.FileProviders.Abstractions 8.0.0 + > Microsoft.Extensions.Hosting.Abstractions 8.0.1 + > Microsoft.Extensions.Logging 6.0.0 + > Microsoft.Extensions.Logging.Abstractions 8.0.3 + > Microsoft.Extensions.Options 8.0.2 + > Microsoft.Extensions.Primitives 8.0.0 + > Microsoft.NETCore.Platforms 5.0.0 + > Microsoft.Win32.Registry 5.0.0 + > Monai.Deploy.Messaging 2.0.4 + > Monai.Deploy.Messaging.RabbitMQ 2.0.3 + > Monai.Deploy.Storage 1.0.2 + > Monai.Deploy.Storage.S3Policy 1.0.2 + > MongoDB.Bson 2.30.0 + > MongoDB.Driver.Core 2.30.0 + > MongoDB.Libmongocrypt 1.12.0 + > Newtonsoft.Json 13.0.3 + > NLog 5.4.0 + > Polly.Core 8.5.2 + > RabbitMQ.Client 6.8.1 + > SharpCompress 0.30.1 + > Snappier 1.0.0 + > System.Buffers 4.5.1 + > System.Diagnostics.DiagnosticSource 6.0.0 + > System.IO.Abstractions 21.3.1 + > System.Memory 4.5.5 + > System.Runtime.CompilerServices.Unsafe 6.0.0 + > System.Security.AccessControl 5.0.0 + > System.Security.Principal.Windows 5.0.0 + > System.Text.Encoding.CodePages 6.0.1 + > System.Text.Encodings.Web 8.0.0 + > System.Text.Json 8.0.5 + > System.Threading.Channels 7.0.0 + > TestableIO.System.IO.Abstractions 21.3.1 + > TestableIO.System.IO.Abstractions.Wrappers 21.3.1 + > ZstdSharp.Port 0.7.3 + +Project 'Monai.Deploy.InformaticsGateway.Database.MongoDB.Integration.Test' has the following package references + [net8.0]: + Top-level Package Requested Resolved + > coverlet.collector 6.0.2 6.0.2 + > FluentAssertions 6.12.2 6.12.2 + > Microsoft.NET.Test.Sdk 17.13.0 17.13.0 + > Moq 4.20.70 4.20.70 + > xunit 2.8.1 2.8.1 + > xunit.runner.visualstudio 2.8.1 2.8.1 + + Transitive Package Resolved + > Ardalis.GuardClauses 4.6.0 + > AWSSDK.Core 3.7.402.25 + > AWSSDK.SecurityToken 3.7.401.68 + > Castle.Core 5.1.1 + > CommunityToolkit.HighPerformance 8.3.2 + > DnsClient 1.6.1 + > fo-dicom 5.2.1 + > HL7-dotnetcore 2.36.0 + > Macross.Json.Extensions 3.0.0 + > Microsoft.Bcl.AsyncInterfaces 8.0.0 + > Microsoft.Bcl.HashCode 1.1.1 + > Microsoft.CodeCoverage 17.13.0 + > Microsoft.EntityFrameworkCore.Abstractions 8.0.14 + > Microsoft.Extensions.Configuration.Abstractions 8.0.0 + > Microsoft.Extensions.DependencyInjection 6.0.1 + > Microsoft.Extensions.DependencyInjection.Abstractions 8.0.2 + > Microsoft.Extensions.Diagnostics.Abstractions 8.0.1 + > Microsoft.Extensions.Diagnostics.HealthChecks 8.0.14 + > Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.14 + > Microsoft.Extensions.FileProviders.Abstractions 8.0.0 + > Microsoft.Extensions.Hosting.Abstractions 8.0.1 + > Microsoft.Extensions.Logging 6.0.0 + > Microsoft.Extensions.Logging.Abstractions 8.0.3 + > Microsoft.Extensions.Options 8.0.2 + > Microsoft.Extensions.Primitives 8.0.0 + > Microsoft.NETCore.Platforms 5.0.0 + > Microsoft.TestPlatform.ObjectModel 17.13.0 + > Microsoft.TestPlatform.TestHost 17.13.0 + > Microsoft.Win32.Registry 5.0.0 + > Monai.Deploy.Messaging 2.0.4 + > Monai.Deploy.Messaging.RabbitMQ 2.0.3 + > Monai.Deploy.Storage 1.0.2 + > Monai.Deploy.Storage.S3Policy 1.0.2 + > MongoDB.Bson 2.30.0 + > MongoDB.Driver 2.30.0 + > MongoDB.Driver.Core 2.30.0 + > MongoDB.Libmongocrypt 1.12.0 + > Newtonsoft.Json 13.0.3 + > NLog 5.4.0 + > Polly 8.5.2 + > Polly.Core 8.5.2 + > RabbitMQ.Client 6.8.1 + > SharpCompress 0.30.1 + > Snappier 1.0.0 + > System.Buffers 4.5.1 + > System.Configuration.ConfigurationManager 4.4.0 + > System.Diagnostics.DiagnosticSource 6.0.0 + > System.Diagnostics.EventLog 6.0.0 + > System.IO.Abstractions 21.3.1 + > System.Memory 4.5.5 + > System.Reflection.Metadata 1.6.0 + > System.Runtime.CompilerServices.Unsafe 6.0.0 + > System.Security.AccessControl 5.0.0 + > System.Security.Cryptography.ProtectedData 4.4.0 + > System.Security.Principal.Windows 5.0.0 + > System.Text.Encoding.CodePages 6.0.1 + > System.Text.Encodings.Web 8.0.0 + > System.Text.Json 8.0.5 + > System.Threading.Channels 7.0.0 + > TestableIO.System.IO.Abstractions 21.3.1 + > TestableIO.System.IO.Abstractions.Wrappers 21.3.1 + > xunit.abstractions 2.0.3 + > xunit.analyzers 1.14.0 + > xunit.assert 2.8.1 + > xunit.core 2.8.1 + > xunit.extensibility.core 2.8.1 + > xunit.extensibility.execution 2.8.1 + > ZstdSharp.Port 0.7.3 + +Project 'Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution' has the following package references + [net8.0]: + Top-level Package Requested Resolved + > Microsoft.EntityFrameworkCore 8.0.14 8.0.14 + > Microsoft.EntityFrameworkCore.Design 8.0.14 8.0.14 + > Microsoft.EntityFrameworkCore.Relational 8.0.14 8.0.14 + > Microsoft.EntityFrameworkCore.Sqlite 8.0.14 8.0.14 + > Microsoft.Extensions.Configuration 8.0.0 8.0.0 + > Microsoft.Extensions.Configuration.FileExtensions 8.0.1 8.0.1 + > Microsoft.Extensions.Configuration.Json 8.0.1 8.0.1 + > Microsoft.Extensions.Options.ConfigurationExtensions 8.0.0 8.0.0 + > MongoDB.Driver 2.30.0 2.30.0 + > NLog 5.4.0 5.4.0 + > Polly 8.5.2 8.5.2 + + Transitive Package Resolved + > Ardalis.GuardClauses 4.6.0 + > AWSSDK.Core 3.7.402.25 + > AWSSDK.SecurityToken 3.7.401.68 + > CommunityToolkit.HighPerformance 8.3.2 + > DnsClient 1.6.1 + > fo-dicom 5.2.1 + > HL7-dotnetcore 2.36.0 + > Humanizer.Core 2.14.1 + > Macross.Json.Extensions 3.0.0 + > Microsoft.Bcl.AsyncInterfaces 8.0.0 + > Microsoft.Bcl.HashCode 1.1.1 + > Microsoft.CodeAnalysis.Analyzers 3.3.3 + > Microsoft.CodeAnalysis.Common 4.5.0 + > Microsoft.CodeAnalysis.CSharp 4.5.0 + > Microsoft.CodeAnalysis.CSharp.Workspaces 4.5.0 + > Microsoft.CodeAnalysis.Workspaces.Common 4.5.0 + > Microsoft.Data.Sqlite.Core 8.0.14 + > Microsoft.EntityFrameworkCore.Abstractions 8.0.14 + > Microsoft.EntityFrameworkCore.Analyzers 8.0.14 + > Microsoft.EntityFrameworkCore.Sqlite.Core 8.0.14 + > Microsoft.Extensions.Caching.Abstractions 8.0.0 + > Microsoft.Extensions.Caching.Memory 8.0.1 + > Microsoft.Extensions.Configuration.Abstractions 8.0.0 + > Microsoft.Extensions.Configuration.Binder 8.0.0 + > Microsoft.Extensions.DependencyInjection 8.0.1 + > Microsoft.Extensions.DependencyInjection.Abstractions 8.0.2 + > Microsoft.Extensions.DependencyModel 8.0.2 + > Microsoft.Extensions.Diagnostics.Abstractions 8.0.1 + > Microsoft.Extensions.Diagnostics.HealthChecks 8.0.14 + > Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.14 + > Microsoft.Extensions.FileProviders.Abstractions 8.0.0 + > Microsoft.Extensions.FileProviders.Physical 8.0.0 + > Microsoft.Extensions.FileSystemGlobbing 8.0.0 + > Microsoft.Extensions.Hosting.Abstractions 8.0.1 + > Microsoft.Extensions.Logging 8.0.1 + > Microsoft.Extensions.Logging.Abstractions 8.0.3 + > Microsoft.Extensions.Options 8.0.2 + > Microsoft.Extensions.Primitives 8.0.0 + > Microsoft.NETCore.Platforms 5.0.0 + > Microsoft.Win32.Registry 5.0.0 + > Monai.Deploy.Messaging 2.0.4 + > Monai.Deploy.Messaging.RabbitMQ 2.0.3 + > Monai.Deploy.Storage 1.0.2 + > Monai.Deploy.Storage.S3Policy 1.0.2 + > MongoDB.Bson 2.30.0 + > MongoDB.Driver.Core 2.30.0 + > MongoDB.Libmongocrypt 1.12.0 + > Mono.TextTemplating 2.2.1 + > Newtonsoft.Json 13.0.3 + > Polly.Core 8.5.2 + > RabbitMQ.Client 6.8.1 + > SharpCompress 0.30.1 + > Snappier 1.0.0 + > SQLitePCLRaw.bundle_e_sqlite3 2.1.6 + > SQLitePCLRaw.core 2.1.6 + > SQLitePCLRaw.lib.e_sqlite3 2.1.6 + > SQLitePCLRaw.provider.e_sqlite3 2.1.6 + > System.Buffers 4.5.1 + > System.CodeDom 4.4.0 + > System.Collections.Immutable 6.0.0 + > System.Composition 6.0.0 + > System.Composition.AttributedModel 6.0.0 + > System.Composition.Convention 6.0.0 + > System.Composition.Hosting 6.0.0 + > System.Composition.Runtime 6.0.0 + > System.Composition.TypedParts 6.0.0 + > System.IO.Abstractions 21.3.1 + > System.IO.Pipelines 6.0.3 + > System.Memory 4.5.5 + > System.Reflection.Metadata 6.0.1 + > System.Runtime.CompilerServices.Unsafe 6.0.0 + > System.Security.AccessControl 5.0.0 + > System.Security.Principal.Windows 5.0.0 + > System.Text.Encoding.CodePages 6.0.1 + > System.Text.Encodings.Web 8.0.0 + > System.Text.Json 8.0.5 + > System.Threading.Channels 7.0.0 + > TestableIO.System.IO.Abstractions 21.3.1 + > TestableIO.System.IO.Abstractions.Wrappers 21.3.1 + > ZstdSharp.Port 0.7.3 + +Project 'Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution.Test' has the following package references + [net8.0]: + Top-level Package Requested Resolved + > coverlet.collector 6.0.4 6.0.4 + > Microsoft.EntityFrameworkCore.InMemory 8.0.14 8.0.14 + > Microsoft.EntityFrameworkCore.Sqlite 8.0.14 8.0.14 + > Microsoft.EntityFrameworkCore.Sqlite.Core 8.0.14 8.0.14 + > Microsoft.NET.Test.Sdk 17.13.0 17.13.0 + > Moq 4.20.70 4.20.70 + > System.IO.Abstractions.TestingHelpers 21.3.1 21.3.1 + > xRetry 1.9.0 1.9.0 + > xunit 2.8.1 2.8.1 + > xunit.runner.visualstudio 2.8.1 2.8.1 + + Transitive Package Resolved + > Ardalis.GuardClauses 4.6.0 + > AWSSDK.Core 3.7.402.25 + > AWSSDK.SecurityToken 3.7.401.68 + > Castle.Core 5.1.1 + > CommunityToolkit.HighPerformance 8.3.2 + > DnsClient 1.6.1 + > fo-dicom 5.2.1 + > HL7-dotnetcore 2.36.0 + > Humanizer.Core 2.14.1 + > Macross.Json.Extensions 3.0.0 + > Microsoft.Bcl.AsyncInterfaces 8.0.0 + > Microsoft.Bcl.HashCode 1.1.1 + > Microsoft.CodeAnalysis.Analyzers 3.3.3 + > Microsoft.CodeAnalysis.Common 4.5.0 + > Microsoft.CodeAnalysis.CSharp 4.5.0 + > Microsoft.CodeAnalysis.CSharp.Workspaces 4.5.0 + > Microsoft.CodeAnalysis.Workspaces.Common 4.5.0 + > Microsoft.CodeCoverage 17.13.0 + > Microsoft.Data.Sqlite.Core 8.0.14 + > Microsoft.EntityFrameworkCore 8.0.14 + > Microsoft.EntityFrameworkCore.Abstractions 8.0.14 + > Microsoft.EntityFrameworkCore.Analyzers 8.0.14 + > Microsoft.EntityFrameworkCore.Design 8.0.14 + > Microsoft.EntityFrameworkCore.Relational 8.0.14 + > Microsoft.Extensions.Caching.Abstractions 8.0.0 + > Microsoft.Extensions.Caching.Memory 8.0.1 + > Microsoft.Extensions.Configuration 8.0.0 + > Microsoft.Extensions.Configuration.Abstractions 8.0.0 + > Microsoft.Extensions.Configuration.Binder 8.0.0 + > Microsoft.Extensions.Configuration.FileExtensions 8.0.1 + > Microsoft.Extensions.Configuration.Json 8.0.1 + > Microsoft.Extensions.DependencyInjection 8.0.1 + > Microsoft.Extensions.DependencyInjection.Abstractions 8.0.2 + > Microsoft.Extensions.DependencyModel 8.0.2 + > Microsoft.Extensions.Diagnostics.Abstractions 8.0.1 + > Microsoft.Extensions.Diagnostics.HealthChecks 8.0.14 + > Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.14 + > Microsoft.Extensions.FileProviders.Abstractions 8.0.0 + > Microsoft.Extensions.FileProviders.Physical 8.0.0 + > Microsoft.Extensions.FileSystemGlobbing 8.0.0 + > Microsoft.Extensions.Hosting.Abstractions 8.0.1 + > Microsoft.Extensions.Logging 8.0.1 + > Microsoft.Extensions.Logging.Abstractions 8.0.3 + > Microsoft.Extensions.Options 8.0.2 + > Microsoft.Extensions.Options.ConfigurationExtensions 8.0.0 + > Microsoft.Extensions.Primitives 8.0.0 + > Microsoft.NETCore.Platforms 5.0.0 + > Microsoft.TestPlatform.ObjectModel 17.13.0 + > Microsoft.TestPlatform.TestHost 17.13.0 + > Microsoft.Win32.Registry 5.0.0 + > Monai.Deploy.Messaging 2.0.4 + > Monai.Deploy.Messaging.RabbitMQ 2.0.3 + > Monai.Deploy.Storage 1.0.2 + > Monai.Deploy.Storage.S3Policy 1.0.2 + > MongoDB.Bson 2.30.0 + > MongoDB.Driver 2.30.0 + > MongoDB.Driver.Core 2.30.0 + > MongoDB.Libmongocrypt 1.12.0 + > Mono.TextTemplating 2.2.1 + > Newtonsoft.Json 13.0.3 + > NLog 5.4.0 + > Polly 8.5.2 + > Polly.Core 8.5.2 + > RabbitMQ.Client 6.8.1 + > SharpCompress 0.30.1 + > Snappier 1.0.0 + > SQLitePCLRaw.bundle_e_sqlite3 2.1.6 + > SQLitePCLRaw.core 2.1.6 + > SQLitePCLRaw.lib.e_sqlite3 2.1.6 + > SQLitePCLRaw.provider.e_sqlite3 2.1.6 + > System.Buffers 4.5.1 + > System.CodeDom 4.4.0 + > System.Collections.Immutable 6.0.0 + > System.Composition 6.0.0 + > System.Composition.AttributedModel 6.0.0 + > System.Composition.Convention 6.0.0 + > System.Composition.Hosting 6.0.0 + > System.Composition.Runtime 6.0.0 + > System.Composition.TypedParts 6.0.0 + > System.Diagnostics.EventLog 6.0.0 + > System.IO.Abstractions 21.3.1 + > System.IO.Pipelines 6.0.3 + > System.Memory 4.5.5 + > System.Reflection.Metadata 6.0.1 + > System.Runtime.CompilerServices.Unsafe 6.0.0 + > System.Security.AccessControl 5.0.0 + > System.Security.Principal.Windows 5.0.0 + > System.Text.Encoding.CodePages 6.0.1 + > System.Text.Encodings.Web 8.0.0 + > System.Text.Json 8.0.5 + > System.Threading.Channels 7.0.0 + > TestableIO.System.IO.Abstractions 21.3.1 + > TestableIO.System.IO.Abstractions.TestingHelpers 21.3.1 + > TestableIO.System.IO.Abstractions.Wrappers 21.3.1 + > xunit.abstractions 2.0.3 + > xunit.analyzers 1.14.0 + > xunit.assert 2.8.1 + > xunit.core 2.8.1 + > xunit.extensibility.core 2.8.1 + > xunit.extensibility.execution 2.8.1 + > ZstdSharp.Port 0.7.3 + +Project 'Monai.Deploy.InformaticsGateway.Test.PlugIns' has the following package references + [net8.0]: + Transitive Package Resolved + > Ardalis.GuardClauses 4.6.0 + > AWSSDK.Core 3.7.402.25 + > AWSSDK.SecurityToken 3.7.401.68 + > CommunityToolkit.HighPerformance 8.3.2 + > fo-dicom 5.2.1 + > HL7-dotnetcore 2.36.0 + > Macross.Json.Extensions 3.0.0 + > Microsoft.Bcl.AsyncInterfaces 8.0.0 + > Microsoft.Bcl.HashCode 1.1.1 + > Microsoft.EntityFrameworkCore.Abstractions 8.0.14 + > Microsoft.Extensions.Configuration.Abstractions 8.0.0 + > Microsoft.Extensions.DependencyInjection 6.0.1 + > Microsoft.Extensions.DependencyInjection.Abstractions 8.0.2 + > Microsoft.Extensions.Diagnostics.Abstractions 8.0.1 + > Microsoft.Extensions.Diagnostics.HealthChecks 8.0.14 + > Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.14 + > Microsoft.Extensions.FileProviders.Abstractions 8.0.0 + > Microsoft.Extensions.Hosting.Abstractions 8.0.1 + > Microsoft.Extensions.Logging 6.0.0 + > Microsoft.Extensions.Logging.Abstractions 8.0.3 + > Microsoft.Extensions.Options 8.0.2 + > Microsoft.Extensions.Primitives 8.0.0 + > Monai.Deploy.Messaging 2.0.4 + > Monai.Deploy.Messaging.RabbitMQ 2.0.3 + > Monai.Deploy.Storage 1.0.2 + > Monai.Deploy.Storage.S3Policy 1.0.2 + > Newtonsoft.Json 13.0.3 + > Polly 8.4.0 + > Polly.Core 8.4.0 + > RabbitMQ.Client 6.8.1 + > System.Buffers 4.5.1 + > System.Diagnostics.DiagnosticSource 6.0.0 + > System.IO.Abstractions 21.3.1 + > System.Memory 4.5.5 + > System.Runtime.CompilerServices.Unsafe 6.0.0 + > System.Text.Encoding.CodePages 6.0.1 + > System.Text.Encodings.Web 8.0.0 + > System.Text.Json 8.0.5 + > System.Threading.Channels 7.0.0 + > TestableIO.System.IO.Abstractions 21.3.1 + > TestableIO.System.IO.Abstractions.Wrappers 21.3.1 + +(A) : Auto-referenced package. diff --git a/tests/Integration.Test/Monai.Deploy.InformaticsGateway.Integration.Test.csproj b/tests/Integration.Test/Monai.Deploy.InformaticsGateway.Integration.Test.csproj index 59cd86f0..d9b2632d 100755 --- a/tests/Integration.Test/Monai.Deploy.InformaticsGateway.Integration.Test.csproj +++ b/tests/Integration.Test/Monai.Deploy.InformaticsGateway.Integration.Test.csproj @@ -21,18 +21,18 @@ true - + all runtime; build; native; contentfiles; analyzers; buildtransitive - - - + + + - - + + - + @@ -42,13 +42,13 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - - - + + + - + - + diff --git a/tests/Integration.Test/packages.lock.json b/tests/Integration.Test/packages.lock.json index bc5e7f71..d08a936d 100644 --- a/tests/Integration.Test/packages.lock.json +++ b/tests/Integration.Test/packages.lock.json @@ -4,63 +4,63 @@ "net8.0": { "coverlet.collector": { "type": "Direct", - "requested": "[6.0.2, )", - "resolved": "6.0.2", - "contentHash": "bJShQ6uWRTQ100ZeyiMqcFlhP7WJ+bCuabUs885dJiBEzMsJMSFr7BOyeCw4rgvQokteGi5rKQTlkhfQPUXg2A==" + "requested": "[6.0.4, )", + "resolved": "6.0.4", + "contentHash": "lkhqpF8Pu2Y7IiN7OntbsTtdbpR1syMsm2F3IgX6ootA4ffRqWL5jF7XipHuZQTdVuWG/gVAAcf8mjk8Tz0xPg==" }, "FluentAssertions": { "type": "Direct", - "requested": "[6.12.0, )", - "resolved": "6.12.0", - "contentHash": "ZXhHT2YwP9lajrwSKbLlFqsmCCvFJMoRSK9t7sImfnCyd0OB3MhgxdoMcVqxbq1iyxD6mD2fiackWmBb7ayiXQ==", + "requested": "[6.12.2, )", + "resolved": "6.12.2", + "contentHash": "8YE+xJmT8wgzEpFuzJ4S62oFhEL/AKouMz1RWPEMEUhy9H11aRQlGIWcHurH5BEy7tbF6gb0CJrs0wOw/AtDcQ==", "dependencies": { "System.Configuration.ConfigurationManager": "4.4.0" } }, "fo-dicom": { "type": "Direct", - "requested": "[5.1.2, )", - "resolved": "5.1.2", - "contentHash": "2lM76Vq+GRdwyY3BQiUJ+V6yxdFiOG4ysLJC7qNTxLsq/1pr5ZTTXiIzWQa+uJ0MuKnzzFogV5+meDflsyjs2g==", + "requested": "[5.2.1, )", + "resolved": "5.2.1", + "contentHash": "Oa6raonOj/Xm+a1j3O89OlUXJIF55jLAKjCuXKINYJMJ+hJ/9Al1YOxPs1hut8DBKvHbgYtgdRFtqGNS+Qt6Uw==", "dependencies": { - "CommunityToolkit.HighPerformance": "8.2.2", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "CommunityToolkit.HighPerformance": "8.3.2", + "Microsoft.Bcl.AsyncInterfaces": "8.0.0", "Microsoft.Bcl.HashCode": "1.1.1", "Microsoft.Extensions.DependencyInjection": "6.0.1", "Microsoft.Extensions.Logging": "6.0.0", "Microsoft.Extensions.Options": "6.0.0", "System.Buffers": "4.5.1", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "6.0.9", + "System.Text.Encoding.CodePages": "6.0.1", + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.5", "System.Threading.Channels": "6.0.0" } }, "HL7-dotnetcore": { "type": "Direct", - "requested": "[2.36.0, )", - "resolved": "2.36.0", - "contentHash": "N1HLMeIqYuY+4O69ItgZJoDBnnpNkK5N2pClceTJ2nFJxsP48iCsA4iz3tm43Yszi4r/vaThoc3UoLBfGP3vKw==" + "requested": "[2.39.1, )", + "resolved": "2.39.1", + "contentHash": "xbgykLlAr644SfYY2oxnpYYto+JFYLuUHt00hRTlhpB+5DiFC2oVSVRA+8yyq/lmkjTNidtTbN9nyK0ft4DSfw==" }, "Microsoft.EntityFrameworkCore": { "type": "Direct", - "requested": "[8.0.6, )", - "resolved": "8.0.6", - "contentHash": "Ms5e5QuBAjVIuQsGumeLvkgMiOpnj6wxPvwBIoe1NfTkseWK4NZYztnhgDlpkCPkrUmJEXLv69kl349Ours30Q==", + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "HNn+NPKCm7rR7ij7IRCCbuImaMulFJGloyIbMwi3Ews77RsthM8gxpTZciFLgRYPsBtszKpdIClEwnWmP0vjUg==", "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "8.0.6", - "Microsoft.EntityFrameworkCore.Analyzers": "8.0.6", - "Microsoft.Extensions.Caching.Memory": "8.0.0", - "Microsoft.Extensions.Logging": "8.0.0" + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.14", + "Microsoft.EntityFrameworkCore.Analyzers": "8.0.14", + "Microsoft.Extensions.Caching.Memory": "8.0.1", + "Microsoft.Extensions.Logging": "8.0.1" } }, "Microsoft.EntityFrameworkCore.Sqlite": { "type": "Direct", - "requested": "[8.0.6, )", - "resolved": "8.0.6", - "contentHash": "nC4cZN4zReTb22qd9WDU0eDmlXvkyf2g2pqQ3VIHJbkpJcdWSY/PDgwGpbpShsVcAjXbkjGiUcv9aGwa61xQPw==", + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "iqrhkOirZ9mm3Yu+ut9698VDn6WSykfr9NMECIe6gObUZLxAsg28f1JmIjx2n4pKFm5Uz5sYJ3k4AUnrJbgUag==", "dependencies": { - "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.6", + "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.14", "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" } }, @@ -76,9 +76,9 @@ }, "Microsoft.Extensions.Configuration.Binder": { "type": "Direct", - "requested": "[8.0.1, )", - "resolved": "8.0.1", - "contentHash": "2UKFJnLiBt7Od6nCnTqP9rTIUNhzmn9Hv1l2FchyKbz8xieB9ULwZTbQZMw+M24Qw3F5dzzH1U9PPleN0LNLOQ==", + "requested": "[8.0.2, )", + "resolved": "8.0.2", + "contentHash": "7IQhGK+wjyGrNsPBjJcZwWAr+Wf6D4+TwOptUt77bWtgNkiV8tDEbhFS+dDamtQFZ2X7kWG9m71iZQRj2x3zgQ==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" } @@ -95,25 +95,24 @@ }, "Microsoft.Extensions.Configuration.Json": { "type": "Direct", - "requested": "[8.0.0, )", - "resolved": "8.0.0", - "contentHash": "C2wqUoh9OmRL1akaCcKSTmRU8z0kckfImG7zLNI8uyi47Lp+zd5LWAD17waPQEqCz3ioWOCrFUo+JJuoeZLOBw==", + "requested": "[8.0.1, )", + "resolved": "8.0.1", + "contentHash": "L89DLNuimOghjV3tLx0ArFDwVEJD6+uGB3BMCMX01kaLzXkaXHb2021xOMl2QOxUxbdePKUZsUY7n2UUkycjRg==", "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "System.Text.Json": "8.0.0" + "Microsoft.Extensions.Configuration.FileExtensions": "8.0.1", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0" } }, "Microsoft.NET.Test.Sdk": { "type": "Direct", - "requested": "[17.10.0, )", - "resolved": "17.10.0", - "contentHash": "0/2HeACkaHEYU3wc83YlcD2Fi4LMtECJjqrtvw0lPi9DCEa35zSPt1j4fuvM8NagjDqJuh1Ja35WcRtn1Um6/A==", + "requested": "[17.13.0, )", + "resolved": "17.13.0", + "contentHash": "W19wCPizaIC9Zh47w8wWI/yxuqR7/dtABwOrc8r2jX/8mUNxM2vw4fXDh+DJTeogxV+KzKwg5jNNGQVwf3LXyA==", "dependencies": { - "Microsoft.CodeCoverage": "17.10.0", - "Microsoft.TestPlatform.TestHost": "17.10.0" + "Microsoft.CodeCoverage": "17.13.0", + "Microsoft.TestPlatform.TestHost": "17.13.0" } }, "Minio": { @@ -131,24 +130,24 @@ }, "Monai.Deploy.Messaging.RabbitMQ": { "type": "Direct", - "requested": "[2.0.3, )", - "resolved": "2.0.3", - "contentHash": "/tj7IO/SHYXNRfxh7iIMms9TurhtCIozZp5lDFvd/WkPgKWZyyyZH8wxkNb9r7jIh/vXkrGJcPCxR30uoET+7g==", + "requested": "[2.0.4, )", + "resolved": "2.0.4", + "contentHash": "tmEERdnqJq1STVGx30+wVyj7AtvtT8K2j/59lSiZ7k58ZdRku601Gs6k1KZ/sfGeobCjaB4gI7GROxK+lN6gbg==", "dependencies": { - "Monai.Deploy.Messaging": "2.0.3", - "Polly": "8.4.0", + "Monai.Deploy.Messaging": "2.0.4", + "Polly": "8.5.2", "RabbitMQ.Client": "6.8.1" } }, "Monai.Deploy.Storage.MinIO": { "type": "Direct", - "requested": "[1.0.1, )", - "resolved": "1.0.1", - "contentHash": "7wJ0ozvVVv8xPxQahHm0GgBKl0ZKTOJnMVbRXQW1QoO3pijlsXGZux310gkDEruDZSjZMS4tw6+6eKDozHfbfA==", + "requested": "[1.0.2, )", + "resolved": "1.0.2", + "contentHash": "H73iUS64UwZXK8ZxNUc3DvokEcptpcoYgY+FMJGlotCffGhqrK8iJ18THR0gg9Io5UgIv24mdu1jbUn/Cz2rhA==", "dependencies": { "Minio": "6.0.2", - "Monai.Deploy.Storage": "1.0.1", - "Monai.Deploy.Storage.S3Policy": "1.0.1" + "Monai.Deploy.Storage": "1.0.2", + "Monai.Deploy.Storage.S3Policy": "1.0.2" } }, "Moq": { @@ -162,11 +161,11 @@ }, "Polly": { "type": "Direct", - "requested": "[8.4.0, )", - "resolved": "8.4.0", - "contentHash": "z2EeUutuy49jBQyZ5s2FUuTCGx3GCzJ0cJ2HbjWwks94TsC6bKTtAHKBkMZOa/DyYRl5yIX7MshvMTWl1J6RNg==", + "requested": "[8.5.2, )", + "resolved": "8.5.2", + "contentHash": "vbXsGgkG86nG+TOwY+SmtrGrRHmHH0DQaxtILx//d3Dz/ocJ8izSNYzdvU2gEtWa/LDD8zJLvD3HdjEkdlvkhg==", "dependencies": { - "Polly.Core": "8.4.0" + "Polly.Core": "8.5.2" } }, "RabbitMQ.Client": { @@ -230,29 +229,29 @@ }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AspNetCore.HealthChecks.MongoDb": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "/IZb7dDJBalyF7eE1/Ql5zFcTqVSAejYIPpzMThzgTj049GhvuYWdMJsMf+Y2+u1vUlG0vy0PKE763XdIuaoFg==", + "resolved": "8.1.0", + "contentHash": "NuVDrj7UXBVniePh6JnuM8ryZRWdOIGOBes3owg2WQV/1NPntpWqX/DYaP6SBduHULUp8XRbwAui8qKQAW4SDA==", "dependencies": { "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", - "MongoDB.Driver": "2.22.0" + "MongoDB.Driver": "2.28.0" } }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.304.15", - "contentHash": "XLfl4/wuTDWXH73FjGUx5P6Jf6FNLTlyVwWvQ0b/WyBOtZVJxPlCKUTYDn06VdqcLGg3uPP6FKJqnplKsnMHMw==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.105", - "contentHash": "axqpqdA4QZvHzEdGDLk5/IpPQsUTIcnVDulz4uyE+UEeYAHpFcp/BNQxmmIU4Gdv0G5KwQWKiaUaZPuLVN0Esg==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.304.15, 4.0.0)" + "AWSSDK.Core": "[3.7.402.25, 4.0.0)" } }, "BoDi": { @@ -270,8 +269,8 @@ }, "CommunityToolkit.HighPerformance": { "type": "Transitive", - "resolved": "8.2.2", - "contentHash": "+zIp8d3sbtYaRbM6hqDs4Ui/z34j7DcUmleruZlYLE4CVxXq+MO8XJyIs42vzeTYFX+k0Iq1dEbBUnQ4z/Gnrw==" + "resolved": "8.3.2", + "contentHash": "1Os81ua0FmIOtiSgOk5C1KBraQ3SDfxs/7BG4qDagm48nGplr//lAVqLH9I2TLDVqRFdhqTUaEITFA5Ho/Ovkw==" }, "DnsClient": { "type": "Transitive", @@ -315,16 +314,16 @@ }, "Microsoft.AspNetCore.Authentication.JwtBearer": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "rwxaZYHips5M9vqxRkGfJthTx+Ws4O4yCuefn17J371jL3ouC5Ker43h2hXb5yd9BMnImE9rznT75KJHm6bMgg==", + "resolved": "8.0.14", + "contentHash": "e19jmWJAQucbPYk3/fihJMDCYfv6CO+Qwp34pOehUSCbaHROw6FZ551SN1D0s9Btl0U/QHfuwFq6Z8Oa2ktE6g==", "dependencies": { - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.0.3" + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.1.2" } }, "Microsoft.Bcl.AsyncInterfaces": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==" + "resolved": "8.0.0", + "contentHash": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==" }, "Microsoft.Bcl.HashCode": { "type": "Transitive", @@ -382,64 +381,64 @@ }, "Microsoft.CodeCoverage": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "yC7oSlnR54XO5kOuHlVOKtxomNNN1BWXX8lK1G2jaPXT9sUok7kCOoA4Pgs0qyFaCtMrNsprztYMeoEGqCm4uA==" + "resolved": "17.13.0", + "contentHash": "9LIUy0y+DvUmEPtbRDw6Bay3rzwqFV8P4efTrK4CZhQle3M/QwLPjISghfcolmEGAPWxuJi6m98ZEfk4VR4Lfg==" }, "Microsoft.Data.Sqlite.Core": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "umhZ0ZF2RI81rGFTnYmCxI+Euj4Aqe/6Y4+8CxN9OVJNGDNIqB5laJ3wxQTU8zXCcm2k9F7FL+/6RVoOT4z1Fw==", + "resolved": "8.0.14", + "contentHash": "MT/9fCazlL4T10BwCQCxvUXOmtU4rR1qDl2mpePFhmuXONafUjXUf8FH94IR79ISxrGVHxsOWvwGzgKi6RSE/g==", "dependencies": { "SQLitePCLRaw.core": "2.1.6" } }, "Microsoft.EntityFrameworkCore.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "X7wSSBNFRuN8j8M9HDYG7rPpEeyhY+PdJZR9rftmgvsZH0eK5+bZ3b3As8iO4rLEpjsBzDnrgSIY6q2F3HQatw==" + "resolved": "8.0.14", + "contentHash": "Om8/jdWyx9eKFkA1YEgxk13KjGIzA8teLgG7iNFunsI2+MT6UT54Eb4t6oe4NQlIaACj5voUe6szVAQe9GKwDA==" }, "Microsoft.EntityFrameworkCore.Analyzers": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "fDNtuQ4lAaPaCOlsrwUck/GvnF4QLeDpMmE1L5QtxZpMSmWfnL2/vk8sDL9OVTWcfprooI9V5MNpIx3/Tq5ehg==" + "resolved": "8.0.14", + "contentHash": "lzNb3s4t5JDMHGoUFuX/f977dFythvmzGFJxvjlhExdiATPKQfquo2NM0uX8Kelfq04jRljpdbRzcsSsK1q9Tw==" }, "Microsoft.EntityFrameworkCore.Design": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "4OT+mH+8EB4Kfn1ENpDx2Ssx459j200gvdhDOKq5lkHmHzkRpmEDKS5GfqaLZvBLJKWu1FVGQ7Wnczcjb0hX4g==", + "resolved": "8.0.14", + "contentHash": "ncCvbJYGXK7eSOVqfQNXLaxMWKGaKSYX1VJZjyJXg3IxxmF50B8p/isprgrVLR+SlQwTG1lmhPAPn0dOvCqlrw==", "dependencies": { "Humanizer.Core": "2.14.1", "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0", - "Microsoft.EntityFrameworkCore.Relational": "8.0.6", - "Microsoft.Extensions.DependencyModel": "8.0.0", + "Microsoft.EntityFrameworkCore.Relational": "8.0.14", + "Microsoft.Extensions.DependencyModel": "8.0.2", "Mono.TextTemplating": "2.2.1" } }, "Microsoft.EntityFrameworkCore.Relational": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "chhfmLusCGLGvNYtvMji6KGQlduPDnJsStG/LjS8qJhFWJDDzTZpSr2LHowewcxMrMo/Axc6Jwe+WwSi/vlkTg==", + "resolved": "8.0.14", + "contentHash": "cPEeIk9nFO3+hxj9tp5AvTFdcTZkVPJCOFUiagbf37KhPGtiG0ZWpl15xOzLYTDAYjF5kxH/jcuDYGlLACJEmA==", "dependencies": { - "Microsoft.EntityFrameworkCore": "8.0.6", + "Microsoft.EntityFrameworkCore": "8.0.14", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" } }, "Microsoft.EntityFrameworkCore.Sqlite.Core": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "87xfPtqSouxWWdynYZv/rubd0rOUeiN9+XeoMWQzpZm/5svH1TuvzFODGIY0zKuXS18NiOFyHl9N6///eaEs/Q==", + "resolved": "8.0.14", + "contentHash": "TcbHy/SdKTcrxlgx14uicVMqrBTu3SP3STGicR+JzYG4I3mVtsBgqtArt6mmUtA7UZj7sogXJ6EFpSyNsJU8Zg==", "dependencies": { - "Microsoft.Data.Sqlite.Core": "8.0.6", - "Microsoft.EntityFrameworkCore.Relational": "8.0.6", - "Microsoft.Extensions.DependencyModel": "8.0.0" + "Microsoft.Data.Sqlite.Core": "8.0.14", + "Microsoft.EntityFrameworkCore.Relational": "8.0.14", + "Microsoft.Extensions.DependencyModel": "8.0.2" } }, "Microsoft.EntityFrameworkCore.Tools": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "UsrAqShiZQBK2lcZsXoyFPccbiLRd2az1uXe1he2z4r2TUYyxNQFy+eysGCpZg0g62I4jFRJfvXIAmCi4QCUpg==", + "resolved": "8.0.14", + "contentHash": "nWlJaFEvT7HpLkOusyReeQPeHsl5EUIBlI5Pr05SYhkWFQ7KGLmUNdv4j1aAjrO+x42Enqr7fu7r3MXLPQqImg==", "dependencies": { - "Microsoft.EntityFrameworkCore.Design": "8.0.6" + "Microsoft.EntityFrameworkCore.Design": "8.0.14" } }, "Microsoft.Extensions.ApiDescription.Server": { @@ -457,13 +456,13 @@ }, "Microsoft.Extensions.Caching.Memory": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==", + "resolved": "8.0.1", + "contentHash": "HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==", "dependencies": { "Microsoft.Extensions.Caching.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", "Microsoft.Extensions.Primitives": "8.0.0" } }, @@ -477,8 +476,8 @@ }, "Microsoft.Extensions.Configuration.FileExtensions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "McP+Lz/EKwvtCv48z0YImw+L1gi1gy5rHhNaNIY2CrjloV+XY8gydT8DjMR6zWeL13AFK+DioVpppwAuO1Gi1w==", + "resolved": "8.0.1", + "contentHash": "EJzSNO9oaAXnTdtdNO6npPRsIIeZCBSNmdQ091VDO7fBiOtJAAeEq6dtrVXIi3ZyjC5XRSAtVvF8SzcneRHqKQ==", "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", @@ -489,60 +488,55 @@ }, "Microsoft.Extensions.DependencyInjection": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "resolved": "8.0.1", + "contentHash": "BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.DependencyInjection.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==" + "resolved": "8.0.2", + "contentHash": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==" }, "Microsoft.Extensions.DependencyModel": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==", - "dependencies": { - "System.Text.Encodings.Web": "8.0.0", - "System.Text.Json": "8.0.0" - } + "resolved": "8.0.2", + "contentHash": "mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==" }, "Microsoft.Extensions.Diagnostics.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==", + "resolved": "8.0.1", + "contentHash": "elH2vmwNmsXuKmUeMQ4YW9ldXiF+gSGDgg1vORksob5POnpaI6caj1Hu8zaYbEuibhqCoWg0YRWDazBY3zjBfg==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", - "System.Diagnostics.DiagnosticSource": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "Wtylr3ucMUQ+/6x5ngRtBQ0D0TVloWE3hbwUEhwE16OZHB66uqAEVnEvcAXxW2IFuVAuEHMXX5GebfkbSZQSTw==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.6", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.1", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.14", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.3", "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "GiHK4B5Xsf5YzL73kup2zJoJfDx5RJYBd0LZN6dx8XyOSoZnh7NNrMP+vTLxAJVp//JxHk0KIhBnW9YuFrSVig==" + "resolved": "8.0.14", + "contentHash": "se5sdveMiA3PUOWchOZXY/sGA50MrJ/Mg/G6CdQBtyA4MLySNRilVCi23YT90RAwqvI2uQEk5+buxYdpAfuwpA==" }, "Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "paBCLbj7dMnPSlZ+dkD/Q8KNmI/UZbnCrBVMbX/GZ/6Cs787GSrWawX1UtiCDPfsVGvoaHhQ5oyWHoXrvhb+1g==", + "resolved": "8.0.14", + "contentHash": "4b/wu7E9oNd994GQyehsJkoLAC8BVrRkO6rzWuWTmHm0w0A5m4giPx35BWd7nJ5h0mq2Cfk0ueHlBQo/ICyfJA==", "dependencies": { - "Microsoft.EntityFrameworkCore.Relational": "8.0.6", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.6" + "Microsoft.EntityFrameworkCore.Relational": "8.0.14", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.14" } }, "Microsoft.Extensions.FileProviders.Abstractions": { @@ -570,46 +564,46 @@ }, "Microsoft.Extensions.Hosting.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "resolved": "8.0.1", + "contentHash": "nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "resolved": "8.0.1", + "contentHash": "4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==", "dependencies": { - "Microsoft.Extensions.DependencyInjection": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0" + "Microsoft.Extensions.DependencyInjection": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" } }, "Microsoft.Extensions.Logging.Abstractions": { "type": "Transitive", - "resolved": "8.0.1", - "contentHash": "RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging.Configuration": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "ixXXV0G/12g6MXK65TLngYN9V5hQQRuV+fZi882WIoVJT7h5JvoYoxTEwCgdqwLjSneqh1O+66gM8sMr9z/rsQ==", + "resolved": "8.0.1", + "contentHash": "QWwTrsgOnJMmn+XUslm8D2H1n3PkP/u/v52FODtyBc/k4W9r3i2vcXXeeX/upnzllJYRRbrzVzT0OclfNJtBJA==", "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.Configuration.Binder": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.Configuration.Binder": "8.0.2", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0" } }, @@ -641,49 +635,49 @@ }, "Microsoft.IdentityModel.Abstractions": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "cfPUWdjigLIRIJSKz3uaZxShgf86RVDXHC1VEEchj1gnY25akwPYpbrfSoIGDCqA9UmOMdlctq411+2pAViFow==" + "resolved": "7.1.2", + "contentHash": "33eTIA2uO/L9utJjZWbKsMSVsQf7F8vtd6q5mQX7ZJzNvCpci5fleD6AeANGlbbb7WX7XKxq9+Dkb5e3GNDrmQ==" }, "Microsoft.IdentityModel.JsonWebTokens": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "vxjHVZbMKD3rVdbvKhzAW+7UiFrYToUVm3AGmYfKSOAwyhdLl/ELX1KZr+FaLyyS5VReIzWRWJfbOuHM9i6ywg==", + "resolved": "7.1.2", + "contentHash": "cloLGeZolXbCJhJBc5OC05uhrdhdPL6MWHuVUnkkUvPDeK7HkwThBaLZ1XjBQVk9YhxXE2OvHXnKi0PLleXxDg==", "dependencies": { - "Microsoft.IdentityModel.Tokens": "7.0.3" + "Microsoft.IdentityModel.Tokens": "7.1.2" } }, "Microsoft.IdentityModel.Logging": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "b6GbGO+2LOTBEccHhqoJsOsmemG4A/MY+8H0wK/ewRhiG+DCYwEnucog1cSArPIY55zcn+XdZl0YEiUHkpDISQ==", + "resolved": "7.1.2", + "contentHash": "YCxBt2EeJP8fcXk9desChkWI+0vFqFLvBwrz5hBMsoh0KJE6BC66DnzkdzkJNqMltLromc52dkdT206jJ38cTw==", "dependencies": { - "Microsoft.IdentityModel.Abstractions": "7.0.3" + "Microsoft.IdentityModel.Abstractions": "7.1.2" } }, "Microsoft.IdentityModel.Protocols": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "BtwR+tctBYhPNygyZmt1Rnw74GFrJteW+1zcdIgyvBCjkek6cNwPPqRfdhzCv61i+lwyNomRi8+iI4QKd4YCKA==", + "resolved": "7.1.2", + "contentHash": "SydLwMRFx6EHPWJ+N6+MVaoArN1Htt92b935O3RUWPY1yUF63zEjvd3lBu79eWdZUwedP8TN2I5V9T3nackvIQ==", "dependencies": { - "Microsoft.IdentityModel.Logging": "7.0.3", - "Microsoft.IdentityModel.Tokens": "7.0.3" + "Microsoft.IdentityModel.Logging": "7.1.2", + "Microsoft.IdentityModel.Tokens": "7.1.2" } }, "Microsoft.IdentityModel.Protocols.OpenIdConnect": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "W97TraHApDNArLwpPcXfD+FZH7njJsfEwZE9y9BoofeXMS8H0LBBobz0VOmYmMK4mLdOKxzN7SFT3Ekg0FWI3Q==", + "resolved": "7.1.2", + "contentHash": "6lHQoLXhnMQ42mGrfDkzbIOR3rzKM1W1tgTeMPLgLCqwwGw0d96xFi/UiX/fYsu7d6cD5MJiL3+4HuI8VU+sVQ==", "dependencies": { - "Microsoft.IdentityModel.Protocols": "7.0.3", - "System.IdentityModel.Tokens.Jwt": "7.0.3" + "Microsoft.IdentityModel.Protocols": "7.1.2", + "System.IdentityModel.Tokens.Jwt": "7.1.2" } }, "Microsoft.IdentityModel.Tokens": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "wB+LlbDjhnJ98DULjmFepqf9eEMh/sDs6S6hFh68iNRHmwollwhxk+nbSSfpA5+j+FbRyNskoaY4JsY1iCOKCg==", + "resolved": "7.1.2", + "contentHash": "oICJMqr3aNEDZOwnH5SK49bR6Z4aX0zEAnOLuhloumOSuqnNq+GWBdQyrgILnlcT5xj09xKCP/7Y7gJYB+ls/g==", "dependencies": { - "Microsoft.IdentityModel.Logging": "7.0.3" + "Microsoft.IdentityModel.Logging": "7.1.2" } }, "Microsoft.NETCore.Platforms": { @@ -698,23 +692,23 @@ }, "Microsoft.OpenApi": { "type": "Transitive", - "resolved": "1.6.14", - "contentHash": "tTaBT8qjk3xINfESyOPE2rIellPvB7qpVqiWiyA/lACVvz+xOGiXhFUfohcx82NLbi5avzLW0lx+s6oAqQijfw==" + "resolved": "1.6.23", + "contentHash": "tZ1I0KXnn98CWuV8cpI247A17jaY+ILS9vvF7yhI0uPPEqF4P1d7BWL5Uwtel10w9NucllHB3nTkfYTAcHAh8g==" }, "Microsoft.TestPlatform.ObjectModel": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "KkwhjQevuDj0aBRoPLY6OLAhGqbPUEBuKLbaCs0kUVw29qiOYncdORd4mLVJbn9vGZ7/iFGQ/+AoJl0Tu5Umdg==", + "resolved": "17.13.0", + "contentHash": "bt0E0Dx+iqW97o4A59RCmUmz/5NarJ7LRL+jXbSHod72ibL5XdNm1Ke+UO5tFhBG4VwHLcSjqq9BUSblGNWamw==", "dependencies": { "System.Reflection.Metadata": "1.6.0" } }, "Microsoft.TestPlatform.TestHost": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "LWpMdfqhHvcUkeMCvNYJO8QlPLlYz9XPPb+ZbaXIKhdmjAV0wqTSrTiW5FLaf7RRZT50AQADDOYMOe0HxDxNgA==", + "resolved": "17.13.0", + "contentHash": "9GGw08Dc3AXspjekdyTdZ/wYWFlxbgcF0s7BKxzVX+hzAwpifDOdxM+ceVaaJSQOwqt3jtuNlHn3XTpKUS9x9Q==", "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "17.10.0", + "Microsoft.TestPlatform.ObjectModel": "17.13.0", "Newtonsoft.Json": "13.0.1" } }, @@ -729,53 +723,53 @@ }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.3", - "contentHash": "jchWPuXJC4N9g1jZ7ZPSfbDSBfMmIgFw5w9VqAT5A9USdE/10IMT83wL48KkTbR7eHdphghe06iGKk7IPhYweA==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "21.0.2" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Security": { "type": "Transitive", - "resolved": "1.0.0", - "contentHash": "q0dQiOpOoHX4a3XkueqFRx51WOrQpW1Lwj7e4oqI6aOBeUlA9CPMdZ4+4BlemXc/1A5IClrPugp/owZ1NJ2Wxg==", + "resolved": "1.0.1", + "contentHash": "GrGj/addv+V5MgZuHBXV68M9PtyzrPlvHibyaHPQq602wtK4CYqPGR5P4VJgM2ZuiW89vEKbhd07sxTFkG9Muw==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", - "Microsoft.AspNetCore.Authentication.JwtBearer": "8.0.0", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.AspNetCore.Authentication.JwtBearer": "8.0.14", "Microsoft.Extensions.Configuration": "8.0.0", "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Configuration": "8.0.0" + "Microsoft.Extensions.Logging": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.3", + "Microsoft.Extensions.Logging.Configuration": "8.0.1" } }, "Monai.Deploy.Storage": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "ceVSHBPDMxWV7C6TLBoJmJt3X0RQmdPnm+9NU17Zs0TGE58QvSEHn4GJODtK9+ncgUJICjBhPFcNHV40ybEepQ==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.105", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.6", - "Monai.Deploy.Storage.S3Policy": "1.0.1", - "System.IO.Abstractions": "21.0.2" + "AWSSDK.SecurityToken": "3.7.401.68", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", + "Monai.Deploy.Storage.S3Policy": "1.0.2", + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage.S3Policy": { "type": "Transitive", - "resolved": "1.0.1", - "contentHash": "mgLlLRphh+vrVKen72jfEzBcoOhAzCjavGMUzWIjIFh5avmb2RJNbQERLSISOCjWnqPscc/xSPKFUUpLMOLdYw==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.5.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, "MongoDB.Bson": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "xQx/qtC2nu9oGiyNqAwfiDpUMweLi0nID677cyKykpwmj5AVMrnd//UwmcmuX95178DeY6rf7cjmA613TQXPiA==", + "resolved": "2.30.0", + "contentHash": "Gg0TQUT3IEntcqdug5a9P6d8iwL5CqOpQjVBCq1hxTbkjxdGdY6a2CPv7II44AO9GYUnORYsS6dDME2b7aqYyg==", "dependencies": { "System.Memory": "4.5.5", "System.Runtime.CompilerServices.Unsafe": "5.0.0" @@ -783,25 +777,25 @@ }, "MongoDB.Driver": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "dMqnZTV6MuvoEI4yFtSvKJdAoN6NeyAEvG8aoxnrLIVd7bR84QxLgpsM1nhK17qkOcIx/IrpMIfrvp5iMnYGBg==", + "resolved": "2.30.0", + "contentHash": "BCG8cNF0+U3h5f/O9fu3ktrYhoESBDems1w06PExfYrn2KjHBHCBdvBRY1cIbysnZVjQAJjGtFV9XgW+hXt7Hg==", "dependencies": { "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "2.25.0", - "MongoDB.Driver.Core": "2.25.0", - "MongoDB.Libmongocrypt": "1.8.2" + "MongoDB.Bson": "2.30.0", + "MongoDB.Driver.Core": "2.30.0", + "MongoDB.Libmongocrypt": "1.12.0" } }, "MongoDB.Driver.Core": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "oN4nLgO5HQEThTg/zqeoHqaO2+q64DBVb4r7BvhaFb0p0TM9jZKnCKvh1EA8d9E9swIz0CgvMrvL1mPyRCZzag==", + "resolved": "2.30.0", + "contentHash": "oepDgu24lo44SljuHmIQ99x6jHISnMC4tLfzQGniQg39xiMD8nxalm1HM9RDZcuZbbWa4F6YLt2AIhWkny3XWA==", "dependencies": { "AWSSDK.SecurityToken": "3.7.100.14", "DnsClient": "1.6.1", "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "2.25.0", - "MongoDB.Libmongocrypt": "1.8.2", + "MongoDB.Bson": "2.30.0", + "MongoDB.Libmongocrypt": "1.12.0", "SharpCompress": "0.30.1", "Snappier": "1.0.0", "System.Buffers": "4.5.1", @@ -810,8 +804,8 @@ }, "MongoDB.Libmongocrypt": { "type": "Transitive", - "resolved": "1.8.2", - "contentHash": "z/8JCULSHM1+mzkau0ivIkU9kIn8JEFFSkmYTSaMaWMMHt96JjUtMKuXxeGNGSnHZ5290ZPKIlQfjoWFk2sKog==" + "resolved": "1.12.0", + "contentHash": "B1X51jrtNacKvxKoaqWeknYeJfQS5aWf6BmVLT5JZerz3AUXFzv8edPskJYqBc3kLy1J2PWzMqqsnyb9g8FtcA==" }, "Mono.TextTemplating": { "type": "Transitive", @@ -828,31 +822,31 @@ }, "NLog": { "type": "Transitive", - "resolved": "5.3.2", - "contentHash": "cQRQZuDMjSyMe9EQBnI9v55YAMMz8GAfFd6fFJ6tc/kXnG7Hze8p1I8MgvWSBG6E36wA8vSxRrlm8uSIG+SENg==" + "resolved": "5.4.0", + "contentHash": "LwMcGSW3soF3/SL68rlJN3Eh3ktrAPycC3zZR/07OYBPraZUu0bygEC7kIN10lUQgMXT4s84Fi1chglGdGrQEg==" }, "NLog.Extensions.Logging": { "type": "Transitive", - "resolved": "5.3.11", - "contentHash": "C3Rg6jmOkM7fNBX9jAoVlYzOwsrxdQzl9sYDK1EpRc7RCdjgs8FC9ivJCSsCu/m4l0w83xiTNz7Y1CzmD3BwZg==", + "resolved": "5.4.0", + "contentHash": "5T19INfbzRywZpyBGoQChsB/R7eHW9hR4Ml9O22NRjJpfltGIJ+rsoCcjwr2/V/E6i3/eXLTQwRAeDMICjWpTA==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", "Microsoft.Extensions.Logging": "8.0.0", - "NLog": "5.3.2" + "NLog": "5.4.0" } }, "NLog.Web.AspNetCore": { "type": "Transitive", - "resolved": "5.3.11", - "contentHash": "yGVMYeeMh1v/DZELN8XMEZYg27/w7O0ypcwaD1+cHLf4yI8zZOM0xS57a8gCBV4QCXegN15Upld+9YzS5M1VvA==", + "resolved": "5.4.0", + "contentHash": "Le6rbipSqeGVygbLGgRwZNMsbjJ+YnoAMJdZVhgjQimXwmYbDNkSswK6Mb32bKoC5aIg5mhw+hpAmgWdegs4Eg==", "dependencies": { - "NLog.Extensions.Logging": "5.3.11" + "NLog.Extensions.Logging": "5.4.0" } }, "Polly.Core": { "type": "Transitive", - "resolved": "8.4.0", - "contentHash": "3AZxuP//pxOeBo9tQs7/tz4Z5TTbu4BYfjpaXZD0JYKJo98ngN9TMUz1nybh4k0ykWkMBpGZALV/AmVIE3ew7A==" + "resolved": "8.5.2", + "contentHash": "1MJKdxv4zwDmiWvYvVN24DsrWUfgQ4F83voH8bhbtLMdPuGy8CfTUzsgQhvyrl1a7hrM6f/ydwLVdVUI0xooUw==" }, "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": { "type": "Transitive", @@ -1021,35 +1015,35 @@ }, "Swashbuckle.AspNetCore": { "type": "Transitive", - "resolved": "6.6.2", - "contentHash": "+NB4UYVYN6AhDSjW0IJAd1AGD8V33gemFNLPaxKTtPkHB+HaKAKf9MGAEUPivEWvqeQfcKIw8lJaHq6LHljRuw==", + "resolved": "8.0.0", + "contentHash": "K9FzGTxmwfD+7sVf/FTq/TZFHBTXcROgdcg7gLFwKwgvXwaqTtjGVdam27j0kYfgZZyWlOKr+abmtyd2nAd5eA==", "dependencies": { "Microsoft.Extensions.ApiDescription.Server": "6.0.5", - "Swashbuckle.AspNetCore.Swagger": "6.6.2", - "Swashbuckle.AspNetCore.SwaggerGen": "6.6.2", - "Swashbuckle.AspNetCore.SwaggerUI": "6.6.2" + "Swashbuckle.AspNetCore.Swagger": "8.0.0", + "Swashbuckle.AspNetCore.SwaggerGen": "8.0.0", + "Swashbuckle.AspNetCore.SwaggerUI": "8.0.0" } }, "Swashbuckle.AspNetCore.Swagger": { "type": "Transitive", - "resolved": "6.6.2", - "contentHash": "ovgPTSYX83UrQUWiS5vzDcJ8TEX1MAxBgDFMK45rC24MorHEPQlZAHlaXj/yth4Zf6xcktpUgTEBvffRQVwDKA==", + "resolved": "8.0.0", + "contentHash": "+8Y4pVTWbnzotIk6d6rcwsHGpCchPDqqrvYkyGlI3go+pFaKM+4eX30iCyI0hvr0RMtObJCFhK6aDtlQFbEF1g==", "dependencies": { - "Microsoft.OpenApi": "1.6.14" + "Microsoft.OpenApi": "1.6.23" } }, "Swashbuckle.AspNetCore.SwaggerGen": { "type": "Transitive", - "resolved": "6.6.2", - "contentHash": "zv4ikn4AT1VYuOsDCpktLq4QDq08e7Utzbir86M5/ZkRaLXbCPF11E1/vTmOiDzRTl0zTZINQU2qLKwTcHgfrA==", + "resolved": "8.0.0", + "contentHash": "skCeIQ93yMcUm1PQby5qitFM6KLIlLMj4/i8JHy86x2OFzxTNaaas2kUg6rNV3JvucFvYCNyImg7NMtZHErSzQ==", "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "6.6.2" + "Swashbuckle.AspNetCore.Swagger": "8.0.0" } }, "Swashbuckle.AspNetCore.SwaggerUI": { "type": "Transitive", - "resolved": "6.6.2", - "contentHash": "mBBb+/8Hm2Q3Wygag+hu2jj69tZW5psuv0vMRXY07Wy+Rrj40vRP8ZTbKBhs91r45/HXT4aY4z0iSBYx1h6JvA==" + "resolved": "8.0.0", + "contentHash": "IMqmgclFiZL2QIfopOmWYofZzckrl+SdMt1h4mKC0jc94F+uzt3IHA3YFC0CGlwBqTTSnxHqNUKomNTeAhZbYA==" }, "System.Buffers": { "type": "Transitive", @@ -1165,8 +1159,15 @@ }, "System.Diagnostics.DiagnosticSource": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" + "resolved": "4.3.0", + "contentHash": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } }, "System.Diagnostics.EventLog": { "type": "Transitive", @@ -1219,11 +1220,11 @@ }, "System.IdentityModel.Tokens.Jwt": { "type": "Transitive", - "resolved": "7.0.3", - "contentHash": "caEe+OpQNYNiyZb+DJpUVROXoVySWBahko2ooNfUcllxa9ZQUM8CgM/mDjP6AoFn6cQU9xMmG+jivXWub8cbGg==", + "resolved": "7.1.2", + "contentHash": "Thhbe1peAmtSBFaV/ohtykXiZSOkx59Da44hvtWfIMFofDA3M3LaVyjstACf2rKGn4dEDR2cUpRAZ0Xs/zB+7Q==", "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "7.0.3", - "Microsoft.IdentityModel.Tokens": "7.0.3" + "Microsoft.IdentityModel.JsonWebTokens": "7.1.2", + "Microsoft.IdentityModel.Tokens": "7.1.2" } }, "System.IO": { @@ -1240,11 +1241,11 @@ }, "System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ewYQGK0kzOpfiYCF0P0nqPAnKqGhqiXAWDFeMtQtwJyERA2s7nLx7KEALwDvIFjZvX6677IsPREoLIU9oBOQvA==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2", - "TestableIO.System.IO.Abstractions.Wrappers": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "System.IO.FileSystem": { @@ -1639,11 +1640,8 @@ }, "System.Text.Encoding.CodePages": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } + "resolved": "6.0.1", + "contentHash": "OV04vEWTSDXzaAJCjylOIdjB7Z7QTYQcz4/ATZSiG8PLkZLsbtaADj0Ydj4FdFnqq4PAwEA7SuILE+6ka4cn6A==" }, "System.Text.Encodings.Web": { "type": "Transitive", @@ -1652,11 +1650,8 @@ }, "System.Text.Json": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", - "dependencies": { - "System.Text.Encodings.Web": "8.0.0" - } + "resolved": "8.0.5", + "contentHash": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==" }, "System.Threading": { "type": "Transitive", @@ -1684,15 +1679,15 @@ }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ViPtOy4lAlmWq9GDEwiE5C9XSgDGHUWMRvVvruI38pbikUXkgu7xnCVW7PYdQOjS+iWWcQHt+U7oyPedfnWSHg==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "21.0.2", - "contentHash": "ii6Xgru3ozRaLezwE/lKAPTdE3ES+S3P3ul+QrMxIP10GN+LF0JAi4aWqb8lxzEAwBMSAeK/QipEpVt4KYlTOg==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "21.0.2" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "Validation": { @@ -1758,8 +1753,8 @@ "type": "Project", "dependencies": { "DotNext.Threading": "[5.5.0, )", - "HL7-dotnetcore": "[2.36.0, )", - "Microsoft.EntityFrameworkCore.Design": "[8.0.6, )", + "HL7-dotnetcore": "[2.39.1, )", + "Microsoft.EntityFrameworkCore.Design": "[8.0.14, )", "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", @@ -1768,24 +1763,24 @@ "Monai.Deploy.InformaticsGateway.Database.EntityFramework": "[1.0.0, )", "Monai.Deploy.InformaticsGateway.DicomWeb.Client": "[1.0.0, )", "Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution": "[1.0.0, )", - "Monai.Deploy.Messaging.RabbitMQ": "[2.0.3, )", - "Monai.Deploy.Security": "[1.0.0, )", - "Monai.Deploy.Storage.MinIO": "[1.0.1, )", - "NLog.Web.AspNetCore": "[5.3.11, )", - "Swashbuckle.AspNetCore": "[6.6.2, )" + "Monai.Deploy.Messaging.RabbitMQ": "[2.0.4, )", + "Monai.Deploy.Security": "[1.0.1, )", + "Monai.Deploy.Storage.MinIO": "[1.0.2, )", + "NLog.Web.AspNetCore": "[5.4.0, )", + "Swashbuckle.AspNetCore": "[8.0.0, )" } }, "monai.deploy.informaticsgateway.api": { "type": "Project", "dependencies": { - "HL7-dotnetcore": "[2.36.0, )", + "HL7-dotnetcore": "[2.39.1, )", "Macross.Json.Extensions": "[3.0.0, )", - "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.6, )", + "Microsoft.EntityFrameworkCore.Abstractions": "[8.0.14, )", "Monai.Deploy.InformaticsGateway.Common": "[1.0.0, )", - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Messaging.RabbitMQ": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )", - "fo-dicom": "[5.1.2, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Messaging.RabbitMQ": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )", + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.informaticsgateway.client": { @@ -1798,14 +1793,14 @@ "monai.deploy.informaticsgateway.client.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )" + "Ardalis.GuardClauses": "[4.6.0, )" } }, "monai.deploy.informaticsgateway.common": { "type": "Project", "dependencies": { - "Ardalis.GuardClauses": "[4.5.0, )", - "System.IO.Abstractions": "[21.0.2, )" + "Ardalis.GuardClauses": "[4.6.0, )", + "System.IO.Abstractions": "[21.3.1, )" } }, "monai.deploy.informaticsgateway.configuration": { @@ -1818,9 +1813,9 @@ "monai.deploy.informaticsgateway.database": { "type": "Project", "dependencies": { - "AspNetCore.HealthChecks.MongoDb": "[8.0.1, )", - "Microsoft.EntityFrameworkCore.Tools": "[8.0.6, )", - "Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore": "[8.0.6, )", + "AspNetCore.HealthChecks.MongoDb": "[8.1.0, )", + "Microsoft.EntityFrameworkCore.Tools": "[8.0.14, )", + "Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore": "[8.0.14, )", "Microsoft.Extensions.Options.ConfigurationExtensions": "[8.0.0, )", "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", @@ -1834,55 +1829,55 @@ "dependencies": { "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", - "NLog": "[5.3.2, )" + "NLog": "[5.4.0, )" } }, "monai.deploy.informaticsgateway.database.entityframework": { "type": "Project", "dependencies": { - "Microsoft.EntityFrameworkCore": "[8.0.6, )", - "Microsoft.EntityFrameworkCore.Design": "[8.0.6, )", - "Microsoft.EntityFrameworkCore.Sqlite": "[8.0.6, )", - "Microsoft.Extensions.Configuration.FileExtensions": "[8.0.0, )", - "Microsoft.Extensions.Configuration.Json": "[8.0.0, )", + "Microsoft.EntityFrameworkCore": "[8.0.14, )", + "Microsoft.EntityFrameworkCore.Design": "[8.0.14, )", + "Microsoft.EntityFrameworkCore.Sqlite": "[8.0.14, )", + "Microsoft.Extensions.Configuration.FileExtensions": "[8.0.1, )", + "Microsoft.Extensions.Configuration.Json": "[8.0.1, )", "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", "Monai.Deploy.InformaticsGateway.Database.Api": "[1.0.0, )", - "Polly": "[8.4.0, )" + "Polly": "[8.5.2, )" } }, "monai.deploy.informaticsgateway.database.mongodb": { "type": "Project", "dependencies": { "Monai.Deploy.InformaticsGateway.Database.Api": "[1.0.0, )", - "MongoDB.Driver": "[2.25.0, )", - "Polly": "[8.4.0, )" + "MongoDB.Driver": "[2.30.0, )", + "Polly": "[8.5.2, )" } }, "monai.deploy.informaticsgateway.dicomweb.client": { "type": "Project", "dependencies": { "Monai.Deploy.InformaticsGateway.Client.Common": "[1.0.0, )", - "fo-dicom": "[5.1.2, )" + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.informaticsgateway.plugins.remoteappexecution": { "type": "Project", "dependencies": { - "Microsoft.EntityFrameworkCore": "[8.0.6, )", - "Microsoft.EntityFrameworkCore.Design": "[8.0.6, )", - "Microsoft.EntityFrameworkCore.Relational": "[8.0.6, )", - "Microsoft.EntityFrameworkCore.Sqlite": "[8.0.6, )", + "Microsoft.EntityFrameworkCore": "[8.0.14, )", + "Microsoft.EntityFrameworkCore.Design": "[8.0.14, )", + "Microsoft.EntityFrameworkCore.Relational": "[8.0.14, )", + "Microsoft.EntityFrameworkCore.Sqlite": "[8.0.14, )", "Microsoft.Extensions.Configuration": "[8.0.0, )", - "Microsoft.Extensions.Configuration.FileExtensions": "[8.0.0, )", - "Microsoft.Extensions.Configuration.Json": "[8.0.0, )", + "Microsoft.Extensions.Configuration.FileExtensions": "[8.0.1, )", + "Microsoft.Extensions.Configuration.Json": "[8.0.1, )", "Microsoft.Extensions.Options.ConfigurationExtensions": "[8.0.0, )", "Monai.Deploy.InformaticsGateway.Api": "[0.4.1, )", "Monai.Deploy.InformaticsGateway.Configuration": "[1.0.0, )", "Monai.Deploy.InformaticsGateway.Database.Api": "[1.0.0, )", - "MongoDB.Driver": "[2.25.0, )", - "NLog": "[5.3.2, )", - "Polly": "[8.4.0, )" + "MongoDB.Driver": "[2.30.0, )", + "NLog": "[5.4.0, )", + "Polly": "[8.5.2, )" } }, "monai.deploy.informaticsgateway.test.plugins": {