diff --git a/.github/.gitversion.yml b/.github/.gitversion.yml index 8d657e172..cf1bad18f 100755 --- a/.github/.gitversion.yml +++ b/.github/.gitversion.yml @@ -12,22 +12,29 @@ # See the License for the specific language governing permissions and # limitations under the License. -next-version: 0.2.0 +workflow: GitHubFlow/v1 assembly-versioning-scheme: MajorMinorPatchTag +assembly-file-versioning-scheme: MajorMinorPatchTag mode: ContinuousDelivery branches: main: - tag: '' + label: '' + regex: ^main$ release: - regex: ^release/(?!2022) - tag: rc + label: rc + regex: ^releases?[/-](?.+) develop: - tag: beta + label: beta + increment: Patch + regex: ^develop$ feature: - tag: alpha.{BranchName} + label: alpha.{BranchName} + regex: ^features?[/-](?.+) pull-request: - tag: pr - + label: pr + increment: Patch + regex: ^(pull|pull\-requests|pr)[/-] + ignore: sha: [] merge-message-formats: {} diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e38ef6f91..851eb6fe4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,16 +45,18 @@ jobs: security-events: write steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - - name: Install GitVersion - run: dotnet tool install --global GitVersion.Tool + - name: Setup GitVersion + uses: gittools/actions/gitversion/setup@v3.1.11 + with: + versionSpec: '6.0.5' - name: Determine Version id: gitversion - uses: gittools/actions/gitversion/execute@v1.1.1 + uses: gittools/actions/gitversion/execute@v3.1.11 with: useConfigFile: true updateAssemblyInfo: true @@ -147,16 +149,16 @@ jobs: env: SEMVER: ${{ needs.build-and-deploy.outputs.semVer }} steps: - - uses: actions/checkout@v3 + - 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@v4.0.2 + uses: actions/cache@v4.2.3 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} @@ -193,7 +195,7 @@ 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 path: ~/release @@ -208,11 +210,11 @@ jobs: MAJORMINORPATCH: ${{ needs.build-and-deploy.outputs.majorMinorPatch }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 id: download - name: List artifacts @@ -241,12 +243,12 @@ jobs: publish_branch: docs - name: Install GitReleaseManager - uses: gittools/actions/gitreleasemanager/setup@v1.1.1 + 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@v1.1.1 + uses: gittools/actions/gitreleasemanager/create@v3.1.11 with: token: ${{ secrets.GITHUB_TOKEN }} owner: ${{ steps.repo.outputs._0 }} @@ -257,7 +259,7 @@ jobs: artifacts/mwm-docs-${{ env.SEMVER }}.zip - name: Publish release with GitReleaseManager - uses: gittools/actions/gitreleasemanager/publish@v1.1.1 + uses: gittools/actions/gitreleasemanager/publish@v3.1.11 if: ${{ contains(github.ref, 'refs/heads/main') }} with: token: ${{ secrets.GITHUB_TOKEN }} @@ -266,10 +268,25 @@ jobs: tagName: ${{ env.MAJORMINORPATCH }} - name: Close release with GitReleaseManager - uses: gittools/actions/gitreleasemanager/close@v1.1.1 + uses: gittools/actions/gitreleasemanager/close@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 }} milestone: ${{ env.MAJORMINORPATCH }} + + - name: Unzip docs + if: ${{ contains(github.ref, 'refs/heads/main') }} + run: | + mkdir userguide + unzip artifacts/mwm-docs-${{ env.SEMVER }}.zip -d userguide/ + ls -lR userguide/ + + - name: Deploy Docs + uses: peaceiris/actions-gh-pages@v4 + if: ${{ contains(github.ref, 'refs/heads/main') }} + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: userguide/ + publish_branch: docs diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 0e6791c69..9515e15cc 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -37,17 +37,17 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Install Dotnet - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: ${{ env.DOTNET_VERSION }} - name: Enable NuGet cache - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.2.3 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} @@ -55,7 +55,7 @@ jobs: ${{ runner.os }}-nuget - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 with: languages: csharp @@ -68,4 +68,4 @@ jobs: working-directory: ./src - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 diff --git a/.github/workflows/license-scanning.yml b/.github/workflows/license-scanning.yml index 4a8d9cc48..1c1a4ff8a 100644 --- a/.github/workflows/license-scanning.yml +++ b/.github/workflows/license-scanning.yml @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -40,12 +40,12 @@ jobs: run: gem install license_finder - name: Install Dotnet - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: ${{ env.DOTNET_VERSION }} - name: Enable NuGet cache - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.2.3 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 272a525f9..610c1cb09 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -38,7 +38,7 @@ jobs: security-events: write steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index 8b5355270..9b3a68608 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -42,17 +42,17 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Install Dotnet - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: ${{ env.DOTNET_VERSION }} - name: Enable NuGet cache - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.2.3 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 21881f40a..ffaee082a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,17 +29,17 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Install Dotnet - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: ${{ env.DOTNET_VERSION }} - name: Enable NuGet cache - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.2.3 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} @@ -62,7 +62,7 @@ jobs: working-directory: ./tests - name: Archive code coverage results - uses: actions/upload-artifact@v3.1.2 + uses: actions/upload-artifact@v4.6.2 with: name: code-coverage-reports path: ./tests/**/coverage.opencover.xml @@ -100,12 +100,12 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Install Dotnet - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: ${{ env.DOTNET_VERSION }} @@ -113,7 +113,7 @@ jobs: run: dotnet tool install --global SpecFlow.Plus.LivingDoc.CLI - name: Enable NuGet cache - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.2.3 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} @@ -139,7 +139,7 @@ jobs: - name: Publish report if: always() - uses: actions/upload-artifact@v3.1.2 + uses: actions/upload-artifact@v4.6.2 with: name: WorkflowExecutorIntegrationTestReport path: ./tests/IntegrationTests/WorkflowExecutor.IntegrationTests/bin/Debug/net8.0/LivingDoc.html @@ -177,12 +177,12 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Install Dotnet - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: ${{ env.DOTNET_VERSION }} @@ -190,7 +190,7 @@ jobs: run: dotnet tool install --global SpecFlow.Plus.LivingDoc.CLI - name: Enable NuGet cache - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.2.3 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} @@ -216,7 +216,7 @@ jobs: - name: Publish report if: always() - uses: actions/upload-artifact@v3.1.2 + uses: actions/upload-artifact@v4.6.2 with: name: TaskManagerIntegrationTestReport path: ./tests/IntegrationTests/TaskManager.IntegrationTests/bin/Debug/net8.0/LivingDoc.html @@ -232,17 +232,17 @@ jobs: distribution: 'zulu' # Alternative distribution options are available. - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Install Dotnet - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: ${{ env.DOTNET_VERSION }} - name: Enable NuGet cache - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.2.3 with: path: ~/.nuget/packages key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} @@ -269,7 +269,7 @@ jobs: working-directory: ./src - name: Download code coverage from unit tests - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: code-coverage-reports diff --git a/CallbackApp.Dockerfile b/CallbackApp.Dockerfile index 0c721a40e..eef6e65dc 100644 --- a/CallbackApp.Dockerfile +++ b/CallbackApp.Dockerfile @@ -11,8 +11,10 @@ FROM python:3.10-alpine -RUN apk update && apk upgrade -RUN apk add libcom_err=1.47.0-r5 +RUN apk update && \ + apk upgrade && \ + apk add libcom_err=1.47.1-r1 && \ + rm -rf /var/cache/apk/* WORKDIR /app COPY src/TaskManager/CallbackApp/app.py ./ COPY src/TaskManager/CallbackApp/requirements.txt ./ diff --git a/doc/dependency_decisions.yml b/doc/dependency_decisions.yml index e4f90a386..5d9f26385 100644 --- a/doc/dependency_decisions.yml +++ b/doc/dependency_decisions.yml @@ -3,7 +3,8 @@ - AWSSDK.Core - :versions: - 3.7.100.14 - - 3.7.304.15 + - 3.7.300.29 + - 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) @@ -18,21 +19,24 @@ - AWSSDK.SecurityToken - :versions: - 3.7.100.14 - - 3.7.300.105 + - 3.7.300.30 + - 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.3.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.0.0 + - 8.1.0 :when: 2022-12-08T23:37:56.206Z :who: mocsharp :why: Apache-2.0 @@ -58,7 +62,7 @@ :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: @@ -70,6 +74,7 @@ - CommunityToolkit.HighPerformance - :versions: - 8.2.2 + - 8.3.2 :when: 2023-08-04T00:02:30.206Z :who: mocsharp :why: MIT @@ -101,14 +106,15 @@ - FluentAssertions - :versions: - 6.12.0 + - 6.12.2 :when: 2022-10-14 23:36:44.688882343 Z :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 - Fractions - :versions: - - 7.3.0 + - 7.2.1 :when: 2022-10-14 23:36:45.046338701 Z :who: mocsharp :why: BSD-2 (https://github.com/danm-de/Fractions/raw/master/license.txt) @@ -138,7 +144,7 @@ - - :approve - KubernetesClient - :versions: - - 14.0.2 + - 12.1.1 :when: 2022-10-14 23:36:47.426563919 Z :who: mocsharp :why: Apache-2.0 (https://github.com/kubernetes-client/csharp/raw/master/LICENSE) @@ -160,6 +166,7 @@ - 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) @@ -198,7 +205,8 @@ - - :approve - Microsoft.AspNetCore.JsonPatch - :versions: - - 8.0.6 + - 8.0.0 + - 8.0.14 :when: 2022-10-14 23:36:54.037540738 Z :who: mocsharp :why: Apache-2.0 @@ -206,7 +214,8 @@ - - :approve - Microsoft.AspNetCore.Mvc.NewtonsoftJson - :versions: - - 8.0.6 + - 8.0.0 + - 8.0.14 :when: 2022-10-14 23:36:55.184068414 Z :who: mocsharp :why: Apache-2.0 @@ -214,7 +223,8 @@ - - :approve - Microsoft.AspNetCore.Mvc.Testing - :versions: - - 8.0.6 + - 8.0.0 + - 8.0.14 :when: 2023-04-11 13:37:00.000000000 Z :who: neildsouth :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -222,7 +232,8 @@ - Microsoft.AspNetCore.TestHost - :versions: - 6.0.22 - - 8.0.6 + - 8.0.0 + - 8.0.14 :when: 2023-04-11 13:37:00.000000000 Z :who: neildsouth :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -251,7 +262,9 @@ - - :approve - Microsoft.CodeCoverage - :versions: - - 17.10.0 + - 17.8.0 + - 17.13.0 + - 17.14.0-preview-25107-01 :when: 2022-10-14 23:36:59.038758007 Z :who: mocsharp :why: MIT (https://github.com/microsoft/vstest/raw/main/LICENSE) @@ -265,7 +278,8 @@ - - :approve - Microsoft.Extensions.ApiDescription.Client - :versions: - - 8.0.6 + - 8.0.0 + - 8.0.14 :when: 2022-10-14 23:36:59.804108720 Z :who: mocsharp :why: MIT (https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) @@ -281,7 +295,7 @@ - :versions: - 2.2.0 - 8.0.0 - :when: 2022-10-14 23:37:00.596541774 Z + :when: 2022-08-16T21:39:38.225Z :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) - - :approve @@ -296,6 +310,7 @@ - :versions: - 2.2.0 - 8.0.0 + - 8.0.2 :when: 2022-08-16T23:05:56.869Z :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -317,6 +332,7 @@ - Microsoft.Extensions.Configuration.FileExtensions - :versions: - 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) @@ -324,6 +340,7 @@ - Microsoft.Extensions.Configuration.Json - :versions: - 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) @@ -331,6 +348,7 @@ - Microsoft.Extensions.Configuration.UserSecrets - :versions: - 8.0.0 + - 8.0.1 :when: 2022-08-16T23:05:59.570Z :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -340,13 +358,15 @@ - 2.2.0 - 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) - - :approve - Microsoft.Extensions.DependencyInjection.Abstractions - :versions: - - 8.0.1 + - 8.0.0 + - 8.0.2 :when: 2022-08-16T21:39:41.552Z :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -355,6 +375,7 @@ - :versions: - 1.0.3 - 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) @@ -362,6 +383,7 @@ - Microsoft.Extensions.Diagnostics - :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) @@ -369,20 +391,23 @@ - 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.0 + - 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.0 + - 8.0.14 :when: 2023-08-16T16:49:26.950Z :who: woodheadio :why: MIT (https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) @@ -397,6 +422,7 @@ - Microsoft.Extensions.Hosting - :versions: - 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) @@ -404,6 +430,7 @@ - Microsoft.Extensions.Hosting.Abstractions - :versions: - 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) @@ -426,6 +453,7 @@ - :versions: - 3.1.0 - 8.0.0 + - 8.0.1 :when: 2022-08-16T23:06:05.375Z :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -435,14 +463,15 @@ - 2.2.0 - 6.0.0 - 8.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) - - :approve - Microsoft.Extensions.Logging.Abstractions - :versions: - - 8.0.1 + - 8.0.0 + - 8.0.3 :when: 2022-08-16T21:39:44.471Z :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -451,6 +480,7 @@ - :versions: - 2.2.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) @@ -459,6 +489,7 @@ - :versions: - 2.2.0 - 8.0.0 + - 8.0.1 :when: 2022-08-16T23:06:07.618Z :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -467,6 +498,7 @@ - :versions: - 2.2.0 - 8.0.0 + - 8.0.1 :when: 2022-08-16T23:06:08.061Z :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -474,6 +506,7 @@ - Microsoft.Extensions.Logging.EventLog - :versions: - 8.0.0 + - 8.0.1 :when: 2022-08-16T23:06:08.503Z :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -481,6 +514,7 @@ - Microsoft.Extensions.Logging.EventSource - :versions: - 8.0.0 + - 8.0.1 :when: 2022-08-16T23:06:08.971Z :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -495,6 +529,7 @@ - - :approve - Microsoft.Extensions.Options - :versions: + - 8.0.0 - 8.0.2 :when: 2022-08-16T21:39:46.980Z :who: mocsharp @@ -517,6 +552,7 @@ - - :approve - Microsoft.IdentityModel.Abstractions - :versions: + - 7.0.0 - 7.0.3 - 7.1.2 :when: 2022-10-14T23:37:14.398Z @@ -526,6 +562,7 @@ - - :approve - Microsoft.IdentityModel.JsonWebTokens - :versions: + - 7.0.0 - 7.0.3 - 7.1.2 :when: 2022-10-14T23:37:14.398Z @@ -535,6 +572,7 @@ - - :approve - Microsoft.IdentityModel.Logging - :versions: + - 7.0.0 - 7.0.3 - 7.1.2 :when: 2022-10-14T23:37:15.196Z @@ -545,6 +583,7 @@ - Microsoft.IdentityModel.Protocols - :versions: - 7.0.3 + - 7.1.2 :when: 2022-10-14T23:37:16.007Z :who: mocsharp :why: MIT @@ -553,6 +592,7 @@ - Microsoft.IdentityModel.Protocols.OpenIdConnect - :versions: - 7.0.3 + - 7.1.2 :when: 2022-10-14T23:37:16.403Z :who: mocsharp :why: MIT @@ -560,6 +600,7 @@ - - :approve - Microsoft.IdentityModel.Tokens - :versions: + - 7.0.0 - 7.0.3 - 7.1.2 :when: 2022-10-14T23:37:16.793Z @@ -569,7 +610,9 @@ - - :approve - Microsoft.NET.Test.Sdk - :versions: - - 17.10.0 + - 17.8.0 + - 17.13.0 + - 17.14.0-preview-25107-01 :when: 2023-08-16T16:49:26.950Z :who: woodheadio :why: MIT (https://github.com/microsoft/vstest/raw/v17.4.1/LICENSE) @@ -594,7 +637,8 @@ - - :approve - Microsoft.OpenApi - :versions: - - 1.6.14 + - 1.2.3 + - 1.6.23 :when: 2022-08-16T23:06:15.708Z :who: mocsharp :why: MIT ( @@ -602,14 +646,18 @@ - - :approve - Microsoft.TestPlatform.ObjectModel - :versions: - - 17.10.0 + - 17.8.0 + - 17.13.0 + - 17.14.0-preview-25107-01 :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.8.0 + - 17.13.0 + - 17.14.0-preview-25107-01 :when: 2023-08-16T16:49:26.950Z :who: woodheadio :why: MIT (https://github.com/microsoft/vstest/raw/v17.4.1/LICENSE) @@ -631,6 +679,7 @@ - - :approve - Minio - :versions: + - 6.0.1 - 6.0.2 :when: 2022-08-16T18:11:34.443Z :who: mocsharp @@ -638,7 +687,8 @@ - - :approve - Monai.Deploy.Messaging - :versions: - - 2.0.3 + - 2.0.2 + - 2.0.4 :when: 2023-10-13T18:06:21.511Z :who: neilsouth :why: Apache-2.0 @@ -646,15 +696,26 @@ - - :approve - Monai.Deploy.Messaging.RabbitMQ - :versions: - - 2.0.3 + - 2.0.2 + - 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 + - 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 + - Monai.Deploy.Storage + - :versions: + - 1.0.0 + - 1.0.2 :when: 2022-08-16T23:06:21.988Z :who: mocsharp :why: Apache-2.0 @@ -662,7 +723,8 @@ - - :approve - Monai.Deploy.Storage.MinIO - :versions: - - 1.0.1 + - 1.0.0 + - 1.0.2 :when: 2022-08-16T23:06:22.426Z :who: mocsharp :why: Apache-2.0 @@ -670,19 +732,12 @@ - - :approve - Monai.Deploy.Storage.S3Policy - :versions: - - 1.0.1 + - 1.0.0 + - 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 - :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 - Mongo.Migration - :versions: @@ -693,7 +748,8 @@ - - :approve - MongoDB.Bson - :versions: - - 2.25.0 + - 2.23.1 + - 2.30.0 :when: 2022-11-16T23:38:53.891Z :who: mocsharp :why: Apache-2.0 @@ -702,7 +758,8 @@ - MongoDB.Driver - :versions: - 2.13.1 - - 2.25.0 + - 2.23.1 + - 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) @@ -711,22 +768,17 @@ - :versions: - 2.13.1 - 2.21.0 - - 2.25.0 + - 2.23.1 + - 2.30.0 :when: 2022-11-02 21:45:23.777282609 Z :who: mocsharp :why: Apache-2.0 (https://raw.githubusercontent.com/mongodb/mongo-csharp-driver/master/LICENSE.md) -- - :approve - - Microsoft.Extensions.Options.ConfigurationExtensions - - :versions: - - 8.0.0 - :when: 2022-08-16T23:06:10.759Z - :who: mocsharp - :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) - - :approve - MongoDB.Libmongocrypt - :versions: - 1.2.2 - - 1.8.2 + - 1.8.0 + - 1.12.0 :when: 2022-11-16T23:38:54.863Z :who: mocsharp :why: Apache-2.0 @@ -742,6 +794,7 @@ - Moq - :versions: - 4.20.70 + - 4.20.72 :when: 2023-08-16T16:49:26.950Z :who: woodheadio :why: BSD 3-Clause License (https://raw.githubusercontent.com/moq/moq4/main/License.txt) @@ -757,14 +810,16 @@ - NLog - :versions: - 4.7.11 - - 5.3.2 + - 5.2.8 + - 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.3.8 + - 5.4.0 :when: 2022-10-12T03:14:06.964Z :who: mocsharp :why: BSD 2-Clause Simplified License @@ -772,21 +827,24 @@ - - :approve - NLog.Web.AspNetCore - :versions: - - 5.3.11 + - 5.3.8 + - 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) - - :approve - NUnit - :versions: - - 4.1.0 + - 4.0.1 + - 4.3.2 :when: 2022-10-14 23:37:27.885327724 Z :who: mocsharp - :why: MIT (https://github.com/nunit/nunit/raw/master/LICENSE.txt) + :why: MIT (https://raw.githubusercontent.com/nunit/nunit/refs/heads/main/LICENSE.txt) - - :approve - NUnit3TestAdapter - :versions: - 4.5.0 + - 4.6.0 :when: 2022-10-14 23:37:28.273089349 Z :who: mocsharp :why: MIT (https://github.com/nunit/nunit3-vs-adapter/raw/master/LICENSE) @@ -815,7 +873,8 @@ - Polly - :versions: - 8.2.0 - - 8.4.0 + - 8.2.1 + - 8.5.2 :when: 2022-11-09T18:57:32.294Z :who: mocsharp :why: MIT ( https://licenses.nuget.org/MIT) @@ -823,7 +882,8 @@ - Polly.Core - :versions: - 8.2.0 - - 8.4.0 + - 8.2.1 + - 8.5.2 :when: 2022-11-09T18:57:32.294Z :who: mocsharp :why: MIT ( https://licenses.nuget.org/MIT) @@ -904,14 +964,16 @@ - - :approve - Snapshooter - :versions: - - 0.14.1 + - 0.14.0 + - 0.15.0 :when: 2022-10-14 23:37:37.042360494 Z :who: mocsharp :why: MIT (https://github.com/SwissLife-OSS/snapshooter/raw/master/LICENSE) - - :approve - Snapshooter.NUnit - :versions: - - 0.14.1 + - 0.14.0 + - 0.15.0 :when: 2022-10-14 23:37:37.474483432 Z :who: mocsharp :why: MIT (https://github.com/SwissLife-OSS/snapshooter/raw/master/LICENSE) @@ -922,7 +984,7 @@ :when: 2022-10-14 23:37:37.866252373 Z :who: mocsharp :why: BSD-3-Clause - (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: @@ -930,7 +992,7 @@ :when: 2022-10-14 23:37:38.248142428 Z :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.NUnit - :versions: @@ -938,7 +1000,7 @@ :when: 2022-10-14 23:37:38.719669586 Z :who: mocsharp :why: BSD-3-Clause - (https://github.com/SpecFlowOSS/SpecFlow/raw/master/LICENSE.txt) + :why: MIT (https://spdx.org/licenses/BSD-3-Clause.html) - - :approve - SpecFlow.Plus.LivingDocPlugin - :versions: @@ -946,7 +1008,7 @@ :when: 2022-10-14 23:37:39.085585492 Z :who: mocsharp :why: BSD-3-Clause - (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: @@ -954,7 +1016,7 @@ :when: 2022-10-14 23:37:39.467320445 Z :who: mocsharp :why: BSD-3-Clause - (https://github.com/SpecFlowOSS/SpecFlow/raw/master/LICENSE.txt) + :why: MIT (https://spdx.org/licenses/BSD-3-Clause.html) - - :approve - StyleCop.Analyzers - :versions: @@ -966,7 +1028,8 @@ - - :approve - Swashbuckle.AspNetCore - :versions: - - 6.6.2 + - 6.5.0 + - 8.0.0 :when: 2022-10-14 23:37:40.252385824 Z :who: mocsharp :why: MIT @@ -974,7 +1037,8 @@ - - :approve - Swashbuckle.AspNetCore.Swagger - :versions: - - 6.6.2 + - 6.5.0 + - 8.0.0 :when: 2022-10-14 23:37:40.616726128 Z :who: mocsharp :why: MIT @@ -982,7 +1046,8 @@ - - :approve - Swashbuckle.AspNetCore.SwaggerGen - :versions: - - 6.6.2 + - 6.5.0 + - 8.0.0 :when: 2022-10-14 23:37:41.040002310 Z :who: mocsharp :why: MIT @@ -990,7 +1055,8 @@ - - :approve - Swashbuckle.AspNetCore.SwaggerUI - :versions: - - 6.6.2 + - 6.5.0 + - 8.0.0 :when: 2022-10-14 23:37:41.481037942 Z :who: mocsharp :why: MIT @@ -1081,6 +1147,7 @@ - System.Diagnostics.DiagnosticSource - :versions: - 4.3.0 + - 6.0.0 - 8.0.0 :when: 2022-10-14 23:37:47.604075647 Z :who: mocsharp @@ -1090,6 +1157,7 @@ - :versions: - 6.0.0 - 8.0.0 + - 8.0.1 :when: 2022-10-14 23:37:47.971770524 Z :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -1146,10 +1214,24 @@ - System.IO - :versions: - 4.3.0 - :when: 2022-08-16T21:40:00.565Z + :when: 2022-10-14 23:37:52.104736802 Z :who: mocsharp - :why: MICROSOFT .NET LIBRARY License ( - http://go.microsoft.com/fwlink/?LinkId=329770) + :why: MICROSOFT .NET LIBRARY License + (http://go.microsoft.com/fwlink/?LinkId=329770) +- - :approve + - System.IO.Abstractions + - :versions: + - 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 + - System.IO.Abstractions.TestingHelpers + - :versions: + - 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 - System.IO.Compression - :versions: @@ -1188,8 +1270,8 @@ - System.IO.Hashing - :versions: - 8.0.0 - :when: 2023-8-18 08:53:55.295846123 Z - :who: nsouth + :when: 2022-08-16T21:40:24.434Z + :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) - - :approve - System.IO.Pipelines @@ -1201,12 +1283,11 @@ - - :approve - System.IdentityModel.Tokens.Jwt - :versions: - - 7.0.3 + - 7.0.0 - 7.1.2 - :when: 2022-10-14 23:37:56.206982078 Z + :when: 2022-10-14 23:38:33.492435168 Z :who: mocsharp - :why: MIT - (https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) + :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) - - :approve - System.Linq - :versions: @@ -1317,9 +1398,10 @@ - System.Reflection.Metadata - :versions: - 1.6.0 - :when: 2022-10-14 23:38:06.997936406 Z + - 8.0.0 + :when: 2022-10-14 23:38:07.873086088 Z :who: mocsharp - :why: MIT (https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) + :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) - - :approve - System.Reflection.Primitives - :versions: @@ -1510,6 +1592,7 @@ - :versions: - 4.5.1 - 6.0.0 + - 6.0.1 - 8.0.0 :when: 2023-05-17 14:44:00.000000000 Z :who: neildsouth @@ -1539,6 +1622,7 @@ - 6.0.9 - 7.0.3 - 8.0.0 + - 8.0.5 :when: 2022-10-14 23:38:24.828973176 Z :who: mocsharp :why: MIT (https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) @@ -1629,52 +1713,41 @@ :who: mocsharp :why: MICROSOFT .NET LIBRARY License (http://go.microsoft.com/fwlink/?LinkId=329770) -- - :approve - - System.IO.Abstractions - - :versions: - - 21.0.2 - :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 - :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 + - 21.3.1 + - 22.0.12 :when: 2022-08-16T21:40:21.430Z :who: mocsharp :why: MIT (https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) - - :approve - - YamlDotNet - - :versions: - - 15.1.0 - :when: 2022-10-18 19:24:00.795702526 Z - :who: mocsharp - :why: MIT (https://github.com/aaubry/YamlDotNet/raw/master/LICENSE.txt) -- - :approve - - ZstdSharp.Port + - Testably.Abstractions.FileSystem.Interface - :versions: - - 0.7.3 - :when: 2022-10-14 23:38:32.685243680 Z + - 9.0.0 + :when: 2022-08-16T21:40:21.430Z :who: mocsharp - :why: MIT (https://github.com/oleg-st/ZstdSharp/raw/master/LICENSE) + :why: MIT (https://github.com/Testably/Testably.Abstractions/raw/main/LICENSE) - - :approve - coverlet.collector - :versions: - - 6.0.2 + - 6.0.0 + - 6.0.4 :when: 2022-10-14 23:38:33.099118125 Z :who: mocsharp :why: MIT (https://github.com/coverlet-coverage/coverlet/raw/master/LICENSE) @@ -1682,6 +1755,7 @@ - fo-dicom - :versions: - 5.1.2 + - 5.2.1 :when: 2023-05-17 14:44:00.000000000 Z :who: samrooke :why: Microsoft Public License @@ -1836,7 +1910,8 @@ - - :approve - xunit - :versions: - - 2.8.1 + - 2.7.0 + - 2.9.3 :when: 2022-08-16T21:40:29.166Z :who: mocsharp :why: Apache-2.0 ( @@ -1852,7 +1927,8 @@ - - :approve - xunit.analyzers - :versions: - - 1.14.0 + - 1.11.0 + - 1.18.0 :when: 2022-08-16T21:40:30.047Z :who: mocsharp :why: Apache-2.0 ( @@ -1860,7 +1936,8 @@ - - :approve - xunit.assert - :versions: - - 2.8.1 + - 2.7.0 + - 2.9.3 :when: 2022-08-16T21:40:30.526Z :who: mocsharp :why: Apache-2.0 ( @@ -1868,7 +1945,8 @@ - - :approve - xunit.core - :versions: - - 2.8.1 + - 2.7.0 + - 2.9.3 :when: 2022-08-16T21:40:30.973Z :who: mocsharp :why: Apache-2.0 ( @@ -1876,7 +1954,8 @@ - - :approve - xunit.extensibility.core - :versions: - - 2.8.1 + - 2.7.0 + - 2.9.3 :when: 2022-08-16T21:40:31.401Z :who: mocsharp :why: Apache-2.0 ( @@ -1884,7 +1963,8 @@ - - :approve - xunit.extensibility.execution - :versions: - - 2.8.1 + - 2.7.0 + - 2.9.3 :when: 2022-08-16T21:40:31.845Z :who: mocsharp :why: Apache-2.0 ( @@ -1892,7 +1972,29 @@ - - :approve - xunit.runner.visualstudio - :versions: - - 2.8.1 + - 2.5.6 + - 3.0.2 :when: 2022-08-16T21:40:32.294Z :who: mocsharp :why: MIT ( https://licenses.nuget.org/MIT) +- - :approve + - YamlDotNet + - :versions: + - 13.3.1 + :when: 2022-10-18 19:24:00.795702526 Z + :who: mocsharp + :why: MIT (https://github.com/aaubry/YamlDotNet/raw/master/LICENSE.txt) +- - :approve + - ZstdSharp.Port + - :versions: + - 0.7.3 + :when: 2022-10-14 23:38:32.685243680 Z + :who: mocsharp + :why: MIT (https://github.com/oleg-st/ZstdSharp/raw/master/LICENSE) +- - :approve + - System.Collections.Immutable + - :versions: + - 8.0.0 + :when: 2022-10-14 23:37:44.795018964 Z + :who: mocsharp + :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) diff --git a/docs/changelog.md b/docs/changelog.md index ad89c30a1..a52d0eb8c 100755 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -17,6 +17,13 @@ # Changelog + +## 0.2.1 + +- gh-1022 Address vulnerabilities in .NET (CVE-2024-38229, CVE-2024-35264) + +## 0.2.0 + Added a new Email plugin, this pulls together information and sends a Message (rabbitmq) to a queue for processing via an external application (for the actual sending) Renamed the (Generated) Argo client to ArgoGeneratedClient, added a new ArgoClient using just the methods used by this codebase. diff --git a/docs/compliance/third-party-licenses.md b/docs/compliance/third-party-licenses.md index 5b8f41794..7078e3316 100644 --- a/docs/compliance/third-party-licenses.md +++ b/docs/compliance/third-party-licenses.md @@ -133,15 +133,87 @@ END OF TERMS AND CONDITIONS
-AWSSDK.Core 3.7.304.15 +AWSSDK.Core 3.7.300.29 ## AWSSDK.Core -- Version: 3.7.304.15 +- Version: 3.7.300.29 - 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.300.29) +- License: [Apache-2.0](https://github.com/aws/aws-sdk-net/raw/master/License.txt) + + +``` +Apache License + +Version 2.0, January 2004 + +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: + +You must give any other recipients of the Work or Derivative Works a copy of this License; and + +You must cause any modified files to carry prominent notices stating that You changed the files; and + +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 + +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 +``` + +
+ + +
+AWSSDK.Core 3.7.402.25 + +## AWSSDK.Core + +- Version: 3.7.402.25 +- Authors: Amazon Web Services +- Project URL: https://github.com/aws/aws-sdk-net/ +- 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) @@ -352,15 +424,15 @@ END OF TERMS AND CONDITIONS
-AWSSDK.SecurityToken 3.7.300.105 +AWSSDK.SecurityToken 3.7.300.30 ## AWSSDK.SecurityToken -- Version: 3.7.300.105 +- Version: 3.7.300.30 - 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.300.30) - License: [Apache-2.0](https://github.com/aws/aws-sdk-net/raw/master/License.txt) @@ -425,14 +497,125 @@ END OF TERMS AND CONDITIONS
-Ardalis.GuardClauses 4.5.0 +AWSSDK.SecurityToken 3.7.401.68 + +## AWSSDK.SecurityToken + +- Version: 3.7.401.68 +- Authors: Amazon Web Services +- Project URL: https://github.com/aws/aws-sdk-net/ +- 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) + + +``` +Apache License + +Version 2.0, January 2004 + +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: + +You must give any other recipients of the Work or Derivative Works a copy of this License; and + +You must cause any modified files to carry prominent notices stating that You changed the files; and + +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 + +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 +``` + +
+ + +
+Ardalis.GuardClauses 4.3.0 ## Ardalis.GuardClauses -- Version: 4.5.0 +- Version: 4.3.0 +- Authors: Steve Smith (@ardalis) +- Project URL: https://github.com/ardalis/guardclauses +- Source: [NuGet](https://www.nuget.org/packages/Ardalis.GuardClauses/4.3.0) +- License: [MIT](https://github.com/ardalis/GuardClauses.Analyzers/raw/master/LICENSE) + + +``` +MIT License + +Copyright (c) 2019 Steve Smith + +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. +``` + +
+ + +
+Ardalis.GuardClauses 4.6.0 + +## Ardalis.GuardClauses + +- 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) @@ -464,14 +647,14 @@ SOFTWARE.
-AspNetCore.HealthChecks.MongoDb 8.0.1 +AspNetCore.HealthChecks.MongoDb 8.0.0 ## AspNetCore.HealthChecks.MongoDb -- Version: 8.0.1 +- Version: 8.0.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.0.0) - License: [Apache-2.0](https://github.com/Xabaril/AspNetCore.Diagnostics.HealthChecks/raw/master/LICENSE) @@ -683,92 +866,15 @@ Apache License
-AutoFixture 4.18.1 - -## AutoFixture - -- Version: 4.18.1 -- Authors: Mark Seemann,AutoFixture -- Project URL: https://github.com/AutoFixture/AutoFixture -- Source: [NuGet](https://www.nuget.org/packages/AutoFixture/4.18.1) -- License: [MIT](https://github.com/AutoFixture/AutoFixture/raw/master/LICENCE.txt) - - -``` -The MIT License (MIT) - -Copyright (c) 2013 Mark Seemann - -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. -``` - -
- - -
-AutoFixture.Xunit2 4.18.1 - -## AutoFixture.Xunit2 - -- Version: 4.18.1 -- Authors: Mark Seemann,AutoFixture -- Project URL: https://github.com/AutoFixture/AutoFixture -- Source: [NuGet](https://www.nuget.org/packages/AutoFixture.Xunit2/4.18.1) -- License: [MIT](https://github.com/AutoFixture/AutoFixture/raw/master/LICENCE.txt) - - -``` -The MIT License (MIT) - -Copyright (c) 2013 Mark Seemann - -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. -``` - -
- - -
-BoDi 1.5.0 +AspNetCore.HealthChecks.MongoDb 8.1.0 -## BoDi +## AspNetCore.HealthChecks.MongoDb -- Version: 1.5.0 -- Authors: Gaspar Nagy -- 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) +- 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.1.0) +- License: [Apache-2.0](https://github.com/Xabaril/AspNetCore.Diagnostics.HealthChecks/raw/master/LICENSE) ``` @@ -949,7 +1055,314 @@ 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. + 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. +``` + +
+ + +
+AutoFixture 4.18.1 + +## AutoFixture + +- Version: 4.18.1 +- Authors: Mark Seemann,AutoFixture +- Project URL: https://github.com/AutoFixture/AutoFixture +- Source: [NuGet](https://www.nuget.org/packages/AutoFixture/4.18.1) +- License: [MIT](https://github.com/AutoFixture/AutoFixture/raw/master/LICENCE.txt) + + +``` +The MIT License (MIT) + +Copyright (c) 2013 Mark Seemann + +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. +``` + +
+ + +
+AutoFixture.Xunit2 4.18.1 + +## AutoFixture.Xunit2 + +- Version: 4.18.1 +- Authors: Mark Seemann,AutoFixture +- Project URL: https://github.com/AutoFixture/AutoFixture +- Source: [NuGet](https://www.nuget.org/packages/AutoFixture.Xunit2/4.18.1) +- License: [MIT](https://github.com/AutoFixture/AutoFixture/raw/master/LICENCE.txt) + + +``` +The MIT License (MIT) + +Copyright (c) 2013 Mark Seemann + +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. +``` + +
+ + +
+BoDi 1.5.0 + +## BoDi + +- Version: 1.5.0 +- Authors: Gaspar Nagy +- 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://www.apache.org/licenses/LICENSE-2.0.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. @@ -1029,6 +1442,37 @@ THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
+
+CommunityToolkit.HighPerformance 8.3.2 + +## CommunityToolkit.HighPerformance + +- Version: 8.3.2 +- Authors: Microsoft +- Project URL: https://github.com/CommunityToolkit/dotnet +- Source: [NuGet](https://www.nuget.org/packages/CommunityToolkit.HighPerformance/8.3.2) +- License: [MIT](https://raw.githubusercontent.com/CommunityToolkit/dotnet/main/License.md) + + +``` +# .NET Community Toolkit + +Copyright © .NET Foundation and Contributors + +All rights reserved. + +## MIT License (MIT) + +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 NON-INFRINGEMENT. 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. +``` + +
+ +
DnsClient 1.4.0 @@ -1775,7 +2219,7 @@ SOFTWARE. - 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) +- License: [Apache-2.0](https://raw.githubusercontent.com/fluentassertions/fluentassertions/refs/tags/6.12.2/LICENSE) ``` @@ -1976,40 +2420,246 @@ third-party archives.
-Fractions 7.3.0 +FluentAssertions 6.12.2 + +## FluentAssertions + +- 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.2) +- License: [Apache-2.0](https://raw.githubusercontent.com/fluentassertions/fluentassertions/refs/tags/6.12.2/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: + +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that You +changed the files; and +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 +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 [2010-2021] [Dennis Doomen] + + 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. +``` + +
+ + +
+Fractions 7.2.1 ## Fractions -- Version: 7.3.0 +- Version: 7.2.1 - Authors: Daniel Mueller - Project URL: https://github.com/danm-de/Fractions -- Source: [NuGet](https://www.nuget.org/packages/Fractions/7.3.0) +- Source: [NuGet](https://www.nuget.org/packages/Fractions/7.2.1) - License: [BSD-2](https://github.com/danm-de/Fractions/raw/master/license.txt) ``` -Copyright (c) 2013-2024, Daniel Mueller -All rights reserved. +Copyright (c) 2013-2025, Daniel Mueller -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: +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: -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. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -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. +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. ```
@@ -2030,7 +2680,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ``` 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 @@ -2492,14 +3142,14 @@ Apache License
-KubernetesClient 14.0.2 +KubernetesClient 12.1.1 ## KubernetesClient -- Version: 14.0.2 +- Version: 12.1.1 - Authors: The Kubernetes Project Authors - Project URL: https://github.com/kubernetes-client/csharp -- Source: [NuGet](https://www.nuget.org/packages/KubernetesClient/14.0.2) +- Source: [NuGet](https://www.nuget.org/packages/KubernetesClient/12.1.1) - License: [Apache-2.0](https://github.com/kubernetes-client/csharp/raw/master/LICENSE) @@ -2824,48 +3474,56 @@ SOFTWARE.
-Microsoft.AspNetCore.Hosting.Abstractions 2.2.0 +Microsoft.AspNetCore.Authentication.JwtBearer 8.0.14 -## Microsoft.AspNetCore.Hosting.Abstractions +## Microsoft.AspNetCore.Authentication.JwtBearer -- Version: 2.2.0 +- Version: 8.0.14 - Authors: Microsoft -- Owners: Microsoft - Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.Hosting.Abstractions/2.2.0) -- License: [Apache-2.0](https://raw.githubusercontent.com/aspnet/AspNetCore/2.0.0/LICENSE.txt) +- 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) ``` +The MIT License (MIT) + Copyright (c) .NET Foundation and Contributors All rights reserved. -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 +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: - http://www.apache.org/licenses/LICENSE-2.0 +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -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. +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.AspNetCore.Hosting.Server.Abstractions 2.2.0 +Microsoft.AspNetCore.Hosting.Abstractions 2.2.0 -## Microsoft.AspNetCore.Hosting.Server.Abstractions +## Microsoft.AspNetCore.Hosting.Abstractions - Version: 2.2.0 - Authors: Microsoft - Owners: Microsoft - Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.Hosting.Abstractions/2.2.0) - License: [Apache-2.0](https://raw.githubusercontent.com/aspnet/AspNetCore/2.0.0/LICENSE.txt) @@ -2890,15 +3548,48 @@ specific language governing permissions and limitations under the License.
-Microsoft.AspNetCore.Http.Abstractions 2.2.0 +Microsoft.AspNetCore.Hosting.Server.Abstractions 2.2.0 -## Microsoft.AspNetCore.Http.Abstractions +## Microsoft.AspNetCore.Hosting.Server.Abstractions - Version: 2.2.0 - Authors: Microsoft - Owners: Microsoft - Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.Http.Abstractions/2.2.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0) +- License: [Apache-2.0](https://raw.githubusercontent.com/aspnet/AspNetCore/2.0.0/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 +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. +``` + +
+ + +
+Microsoft.AspNetCore.Http.Abstractions 2.2.0 + +## Microsoft.AspNetCore.Http.Abstractions + +- Version: 2.2.0 +- Authors: Microsoft +- Owners: Microsoft +- Project URL: https://asp.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.Http.Abstractions/2.2.0) - License: [Apache-2.0](https://raw.githubusercontent.com/aspnet/AspNetCore/2.0.0/LICENSE.txt) @@ -2956,14 +3647,78 @@ specific language governing permissions and limitations under the License.
-Microsoft.AspNetCore.JsonPatch 8.0.6 +Microsoft.AspNetCore.JsonPatch 8.0.0 ## Microsoft.AspNetCore.JsonPatch -- Version: 8.0.6 +- Version: 8.0.0 +- Authors: Microsoft +- Project URL: https://asp.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.JsonPatch/8.0.0) +- License: [Apache-2.0](https://raw.githubusercontent.com/aspnet/AspNetCore/2.0.0/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 +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. +``` + +
+ + +
+Microsoft.AspNetCore.JsonPatch 8.0.14 + +## Microsoft.AspNetCore.JsonPatch + +- Version: 8.0.14 +- Authors: Microsoft +- Project URL: https://asp.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.JsonPatch/8.0.14) +- License: [Apache-2.0](https://raw.githubusercontent.com/aspnet/AspNetCore/2.0.0/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 +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. +``` + +
+ + +
+Microsoft.AspNetCore.Mvc.NewtonsoftJson 8.0.0 + +## Microsoft.AspNetCore.Mvc.NewtonsoftJson + +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.JsonPatch/8.0.6) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.Mvc.NewtonsoftJson/8.0.0) - License: [Apache-2.0](https://raw.githubusercontent.com/aspnet/AspNetCore/2.0.0/LICENSE.txt) @@ -2988,18 +3743,20 @@ specific language governing permissions and limitations under the License.
-Microsoft.AspNetCore.Mvc.NewtonsoftJson 8.0.6 +Microsoft.AspNetCore.Mvc.NewtonsoftJson 8.0.14 ## Microsoft.AspNetCore.Mvc.NewtonsoftJson -- Version: 8.0.6 +- Version: 8.0.14 - Authors: Microsoft - Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.Mvc.NewtonsoftJson/8.0.6) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.Mvc.NewtonsoftJson/8.0.14) - License: [Apache-2.0](https://raw.githubusercontent.com/aspnet/AspNetCore/2.0.0/LICENSE.txt) ``` +The MIT License (MIT) + Copyright (c) .NET Foundation and Contributors All rights reserved. @@ -3020,14 +3777,55 @@ specific language governing permissions and limitations under the License.
-Microsoft.AspNetCore.Mvc.Testing 8.0.6 +Microsoft.AspNetCore.Mvc.Testing 8.0.0 ## Microsoft.AspNetCore.Mvc.Testing -- Version: 8.0.6 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.Mvc.Testing/8.0.6) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.Mvc.Testing/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. +``` + +
+ + +
+Microsoft.AspNetCore.Mvc.Testing 8.0.14 + +## Microsoft.AspNetCore.Mvc.Testing + +- Version: 8.0.14 +- Authors: Microsoft +- Project URL: https://asp.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.Mvc.Testing/8.0.14) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -3102,14 +3900,55 @@ SOFTWARE.
-Microsoft.AspNetCore.TestHost 8.0.6 +Microsoft.AspNetCore.TestHost 8.0.0 ## Microsoft.AspNetCore.TestHost -- Version: 8.0.6 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.TestHost/8.0.6) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.TestHost/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. +``` + +
+ + +
+Microsoft.AspNetCore.TestHost 8.0.14 + +## Microsoft.AspNetCore.TestHost + +- Version: 8.0.14 +- Authors: Microsoft +- Project URL: https://asp.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.TestHost/8.0.14) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -3309,14 +4148,14 @@ SOFTWARE.
-Microsoft.CodeCoverage 17.10.0 +Microsoft.CodeCoverage 17.8.0 ## Microsoft.CodeCoverage -- Version: 17.10.0 +- Version: 17.8.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.8.0) - License: [MIT](https://github.com/microsoft/vstest/raw/main/LICENSE) @@ -3350,21 +4189,21 @@ SOFTWARE.
-Microsoft.DotNet.PlatformAbstractions 1.0.3 +Microsoft.CodeCoverage 17.13.0 -## Microsoft.DotNet.PlatformAbstractions +## Microsoft.CodeCoverage -- Version: 1.0.3 -- Authors: Microsoft.DotNet.PlatformAbstractions -- Owners: Microsoft.DotNet.PlatformAbstractions -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.DotNet.PlatformAbstractions/1.0.3) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) +- Version: 17.13.0 +- Authors: Microsoft +- Project URL: https://github.com/microsoft/vstest +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.CodeCoverage/17.13.0) +- License: [MIT](https://github.com/microsoft/vstest/raw/main/LICENSE) ``` The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors +Copyright (c) Microsoft Corporation All rights reserved. @@ -3391,15 +4230,56 @@ SOFTWARE.
-Microsoft.Extensions.ApiDescription.Client 8.0.6 +Microsoft.CodeCoverage 17.14.0-preview-25107-01 -## Microsoft.Extensions.ApiDescription.Client +## Microsoft.CodeCoverage -- Version: 8.0.6 +- Version: 17.14.0-preview-25107-01 - Authors: Microsoft -- Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.ApiDescription.Client/8.0.6) -- License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) +- Project URL: https://github.com/microsoft/vstest +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.CodeCoverage/17.14.0-preview-25107-01) +- License: [MIT](https://github.com/microsoft/vstest/raw/main/LICENSE) + + +``` +The MIT License (MIT) + +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 +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.DotNet.PlatformAbstractions 1.0.3 + +## Microsoft.DotNet.PlatformAbstractions + +- Version: 1.0.3 +- Authors: Microsoft.DotNet.PlatformAbstractions +- Owners: Microsoft.DotNet.PlatformAbstractions +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.DotNet.PlatformAbstractions/1.0.3) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) ``` @@ -3432,14 +4312,14 @@ SOFTWARE.
-Microsoft.Extensions.ApiDescription.Server 6.0.5 +Microsoft.Extensions.ApiDescription.Client 8.0.0 -## Microsoft.Extensions.ApiDescription.Server +## Microsoft.Extensions.ApiDescription.Client -- Version: 6.0.5 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.ApiDescription.Server/6.0.5) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.ApiDescription.Client/8.0.0) - License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) @@ -3473,16 +4353,15 @@ SOFTWARE.
-Microsoft.Extensions.Configuration 2.2.0 +Microsoft.Extensions.ApiDescription.Client 8.0.14 -## Microsoft.Extensions.Configuration +## Microsoft.Extensions.ApiDescription.Client -- Version: 2.2.0 +- Version: 8.0.14 - Authors: Microsoft -- Owners: Microsoft - Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration/2.2.0) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.ApiDescription.Client/8.0.14) +- License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) ``` @@ -3515,15 +4394,98 @@ SOFTWARE.
-Microsoft.Extensions.Configuration 8.0.0 +Microsoft.Extensions.ApiDescription.Server 6.0.5 -## Microsoft.Extensions.Configuration +## Microsoft.Extensions.ApiDescription.Server -- Version: 8.0.0 +- Version: 6.0.5 - Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration/8.0.0) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) +- Project URL: https://asp.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.ApiDescription.Server/6.0.5) +- 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.Configuration 2.2.0 + +## Microsoft.Extensions.Configuration + +- Version: 2.2.0 +- Authors: Microsoft +- Owners: Microsoft +- Project URL: https://asp.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration/2.2.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. +``` + +
+ + +
+Microsoft.Extensions.Configuration 8.0.0 + +## Microsoft.Extensions.Configuration + +- Version: 8.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration/8.0.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) ``` @@ -3679,6 +4641,47 @@ SOFTWARE.
+
+Microsoft.Extensions.Configuration.Binder 8.0.2 + +## Microsoft.Extensions.Configuration.Binder + +- Version: 8.0.2 +- Authors: Microsoft +- Project URL: https://dot.net/ +- 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) + + +``` +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.Configuration.CommandLine 8.0.0 @@ -3802,6 +4805,47 @@ SOFTWARE.
+
+Microsoft.Extensions.Configuration.FileExtensions 8.0.1 + +## Microsoft.Extensions.Configuration.FileExtensions + +- Version: 8.0.1 +- Authors: Microsoft +- Project URL: https://dot.net/ +- 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) + + +``` +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.Configuration.Json 8.0.0 @@ -3844,14 +4888,14 @@ SOFTWARE.
-Microsoft.Extensions.Configuration.UserSecrets 8.0.0 +Microsoft.Extensions.Configuration.Json 8.0.1 -## Microsoft.Extensions.Configuration.UserSecrets +## 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.UserSecrets/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) @@ -3885,15 +4929,14 @@ SOFTWARE.
-Microsoft.Extensions.DependencyInjection 2.2.0 +Microsoft.Extensions.Configuration.UserSecrets 8.0.0 -## Microsoft.Extensions.DependencyInjection +## Microsoft.Extensions.Configuration.UserSecrets -- Version: 2.2.0 +- Version: 8.0.0 - Authors: Microsoft -- Owners: Microsoft -- Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/2.2.0) +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.UserSecrets/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -3927,14 +4970,14 @@ SOFTWARE.
-Microsoft.Extensions.DependencyInjection 6.0.1 +Microsoft.Extensions.Configuration.UserSecrets 8.0.1 -## Microsoft.Extensions.DependencyInjection +## Microsoft.Extensions.Configuration.UserSecrets -- Version: 6.0.1 +- Version: 8.0.1 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/6.0.1) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.UserSecrets/8.0.1) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -3968,14 +5011,15 @@ SOFTWARE.
-Microsoft.Extensions.DependencyInjection 8.0.0 +Microsoft.Extensions.DependencyInjection 2.2.0 ## Microsoft.Extensions.DependencyInjection -- Version: 8.0.0 +- Version: 2.2.0 - Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/8.0.0) +- Owners: Microsoft +- Project URL: https://asp.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/2.2.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4009,14 +5053,14 @@ SOFTWARE.
-Microsoft.Extensions.DependencyInjection.Abstractions 8.0.1 +Microsoft.Extensions.DependencyInjection 6.0.1 -## Microsoft.Extensions.DependencyInjection.Abstractions +## Microsoft.Extensions.DependencyInjection -- Version: 8.0.1 +- Version: 6.0.1 - 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/6.0.1) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4050,14 +5094,14 @@ SOFTWARE.
-Microsoft.Extensions.DependencyModel 1.0.3 +Microsoft.Extensions.DependencyInjection 8.0.0 -## Microsoft.Extensions.DependencyModel +## Microsoft.Extensions.DependencyInjection -- Version: 1.0.3 -- Authors: Microsoft.Extensions.DependencyModel -- Owners: Microsoft.Extensions.DependencyModel -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyModel/1.0.3) +- Version: 8.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4091,14 +5135,14 @@ SOFTWARE.
-Microsoft.Extensions.DependencyModel 8.0.0 +Microsoft.Extensions.DependencyInjection 8.0.1 -## Microsoft.Extensions.DependencyModel +## Microsoft.Extensions.DependencyInjection -- Version: 8.0.0 +- Version: 8.0.1 - 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/8.0.1) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4132,15 +5176,15 @@ SOFTWARE.
-Microsoft.Extensions.Diagnostics 8.0.0 +Microsoft.Extensions.DependencyInjection.Abstractions 8.0.0 -## Microsoft.Extensions.Diagnostics +## Microsoft.Extensions.DependencyInjection.Abstractions - 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) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) ``` @@ -4173,15 +5217,15 @@ SOFTWARE.
-Microsoft.Extensions.Diagnostics.Abstractions 8.0.0 +Microsoft.Extensions.DependencyInjection.Abstractions 8.0.2 -## Microsoft.Extensions.Diagnostics.Abstractions +## 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.Diagnostics.Abstractions/8.0.0) -- License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) +- 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) ``` @@ -4214,15 +5258,15 @@ SOFTWARE.
-Microsoft.Extensions.Diagnostics.HealthChecks 8.0.6 +Microsoft.Extensions.DependencyModel 1.0.3 -## Microsoft.Extensions.Diagnostics.HealthChecks +## Microsoft.Extensions.DependencyModel -- 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) +- Version: 1.0.3 +- Authors: Microsoft.Extensions.DependencyModel +- Owners: Microsoft.Extensions.DependencyModel +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyModel/1.0.3) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) ``` @@ -4255,15 +5299,15 @@ SOFTWARE.
-Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.6 +Microsoft.Extensions.DependencyModel 8.0.0 -## Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions +## Microsoft.Extensions.DependencyModel -- Version: 8.0.6 +- Version: 8.0.0 - 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) +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyModel/8.0.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) ``` @@ -4296,14 +5340,14 @@ SOFTWARE.
-Microsoft.Extensions.FileProviders.Abstractions 8.0.0 +Microsoft.Extensions.DependencyModel 8.0.2 -## Microsoft.Extensions.FileProviders.Abstractions +## Microsoft.Extensions.Diagnostics -- Version: 8.0.0 +- Version: 8.0.2 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Abstractions/8.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) @@ -4337,15 +5381,15 @@ SOFTWARE.
-Microsoft.Extensions.FileProviders.Physical 8.0.0 +Microsoft.Extensions.Diagnostics 8.0.0 -## Microsoft.Extensions.FileProviders.Physical +## Microsoft.Extensions.Diagnostics - 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) -- 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) ``` @@ -4378,15 +5422,15 @@ SOFTWARE.
-Microsoft.Extensions.FileSystemGlobbing 8.0.0 +Microsoft.Extensions.Diagnostics 8.0.1 -## Microsoft.Extensions.FileSystemGlobbing +## Microsoft.Extensions.Diagnostics -- Version: 8.0.0 +- Version: 8.0.1 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.FileSystemGlobbing/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.1) +- License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) ``` @@ -4419,15 +5463,15 @@ SOFTWARE.
-Microsoft.Extensions.Hosting 8.0.0 +Microsoft.Extensions.Diagnostics.Abstractions 8.0.0 -## Microsoft.Extensions.Hosting +## Microsoft.Extensions.Diagnostics.Abstractions - Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Hosting/8.0.0) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) +- 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) ``` @@ -4460,15 +5504,15 @@ SOFTWARE.
-Microsoft.Extensions.Hosting.Abstractions 8.0.0 +Microsoft.Extensions.Diagnostics.Abstractions 8.0.1 -## Microsoft.Extensions.Hosting.Abstractions +## Microsoft.Extensions.Diagnostics.Abstractions -- Version: 8.0.0 +- Version: 8.0.1 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Hosting.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.Abstractions/8.0.1) +- License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) ``` @@ -4501,16 +5545,15 @@ SOFTWARE.
-Microsoft.Extensions.Http 3.1.0 +Microsoft.Extensions.Diagnostics.HealthChecks 8.0.0 -## Microsoft.Extensions.Http +## Microsoft.Extensions.Diagnostics.HealthChecks -- Version: 3.1.0 +- Version: 8.0.0 - Authors: Microsoft -- Owners: Microsoft - Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Http/3.1.0) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Diagnostics.HealthChecks/8.0.0) +- License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) ``` @@ -4543,14 +5586,137 @@ SOFTWARE.
-Microsoft.Extensions.Http 8.0.0 +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) -## Microsoft.Extensions.Http + +``` +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.0 + +## Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions + +- Version: 8.0.0 +- Authors: Microsoft +- Project URL: https://asp.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Diagnostics.HealthChecks.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.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.FileProviders.Abstractions 8.0.0 + +## Microsoft.Extensions.FileProviders.Abstractions - Version: 8.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.FileProviders.Abstractions/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4584,15 +5750,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging 2.2.0 +Microsoft.Extensions.FileProviders.Physical 8.0.0 -## Microsoft.Extensions.Logging +## Microsoft.Extensions.FileProviders.Physical -- Version: 2.2.0 +- Version: 8.0.0 - Authors: Microsoft -- Owners: Microsoft -- Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging/2.2.0) +- Project URL: https://dot.net/ +- 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) @@ -4626,14 +5791,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging 6.0.0 +Microsoft.Extensions.FileSystemGlobbing 8.0.0 -## Microsoft.Extensions.Logging +## Microsoft.Extensions.FileSystemGlobbing -- Version: 6.0.0 +- Version: 8.0.0 - 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.FileSystemGlobbing/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4667,14 +5832,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging 8.0.0 +Microsoft.Extensions.Hosting 8.0.0 -## Microsoft.Extensions.Logging +## Microsoft.Extensions.Hosting - 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.Hosting/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4708,14 +5873,55 @@ SOFTWARE.
-Microsoft.Extensions.Logging 8.0.0 +Microsoft.Extensions.Hosting 8.0.1 + +## Microsoft.Extensions.Hosting + +- Version: 8.0.1 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Hosting/8.0.1) +- 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. +``` + +
-## Microsoft.Extensions.Logging + +
+Microsoft.Extensions.Hosting.Abstractions 8.0.0 + +## Microsoft.Extensions.Hosting.Abstractions - 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.Hosting.Abstractions/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4749,14 +5955,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging.Abstractions 8.0.1 +Microsoft.Extensions.Hosting.Abstractions 8.0.1 -## Microsoft.Extensions.Logging.Abstractions +## Microsoft.Extensions.Hosting.Abstractions - Version: 8.0.1 - 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.Hosting.Abstractions/8.0.1) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4790,15 +5996,15 @@ SOFTWARE.
-Microsoft.Extensions.Logging.Configuration 2.2.0 +Microsoft.Extensions.Http 3.1.0 -## Microsoft.Extensions.Logging.Configuration +## Microsoft.Extensions.Http -- Version: 2.2.0 +- Version: 3.1.0 - Authors: Microsoft - Owners: Microsoft - Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Configuration/2.2.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Http/3.1.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4832,14 +6038,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging.Configuration 8.0.0 +Microsoft.Extensions.Http 8.0.0 -## Microsoft.Extensions.Logging.Configuration +## Microsoft.Extensions.Http - Version: 8.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.Http/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4873,15 +6079,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging.Console 2.2.0 +Microsoft.Extensions.Http 8.0.1 -## Microsoft.Extensions.Logging.Console +## Microsoft.Extensions.Http -- Version: 2.2.0 +- Version: 8.0.1 - Authors: Microsoft -- Owners: Microsoft -- Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Console/2.2.0) +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Http/8.0.1) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4915,14 +6120,15 @@ SOFTWARE.
-Microsoft.Extensions.Logging.Console 8.0.0 +Microsoft.Extensions.Logging 2.2.0 -## Microsoft.Extensions.Logging.Console +## Microsoft.Extensions.Logging -- Version: 8.0.0 +- Version: 2.2.0 - Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Console/8.0.0) +- Owners: Microsoft +- Project URL: https://asp.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging/2.2.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4956,15 +6162,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging.Debug 2.2.0 +Microsoft.Extensions.Logging 6.0.0 -## Microsoft.Extensions.Logging.Debug +## Microsoft.Extensions.Logging -- Version: 2.2.0 +- Version: 6.0.0 - Authors: Microsoft -- Owners: Microsoft -- Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Debug/2.2.0) +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging/6.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4998,14 +6203,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging.Debug 8.0.0 +Microsoft.Extensions.Logging 8.0.0 -## Microsoft.Extensions.Logging.Debug +## Microsoft.Extensions.Logging - Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Debug/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -5039,14 +6244,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging.EventLog 8.0.0 +Microsoft.Extensions.Logging 8.0.1 -## Microsoft.Extensions.Logging.EventLog +## Microsoft.Extensions.Logging -- Version: 8.0.0 +- Version: 8.0.1 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.EventLog/8.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) @@ -5080,14 +6285,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging.EventSource 8.0.0 +Microsoft.Extensions.Logging.Abstractions 8.0.0 -## Microsoft.Extensions.Logging.EventSource +## Microsoft.Extensions.Logging.Abstractions - Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.EventSource/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Abstractions/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -5121,46 +6326,14 @@ SOFTWARE.
-Microsoft.Extensions.ObjectPool 7.0.0 - -## Microsoft.Extensions.ObjectPool - -- Version: 7.0.0 -- Authors: Microsoft -- Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.ObjectPool/7.0.0) -- License: [Apache-2.0](https://raw.githubusercontent.com/aspnet/AspNetCore/2.0.0/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 -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. -``` +Microsoft.Extensions.Logging.Abstractions 8.0.3 -
- - -
-Microsoft.Extensions.Options 8.0.2 - -## Microsoft.Extensions.Options +## Microsoft.Extensions.Logging.Abstractions -- Version: 8.0.2 +- Version: 8.0.3 - 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.Abstractions/8.0.3) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -5194,16 +6367,16 @@ SOFTWARE.
-Microsoft.Extensions.Options.ConfigurationExtensions 2.2.0 +Microsoft.Extensions.Logging.Configuration 2.2.0 -## Microsoft.Extensions.Options.ConfigurationExtensions +## Microsoft.Extensions.Logging.Configuration - Version: 2.2.0 - Authors: Microsoft - Owners: Microsoft - Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Options.ConfigurationExtensions/2.2.0) -- License: [Apache-2.0](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Configuration/2.2.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) ``` @@ -5236,15 +6409,15 @@ SOFTWARE.
-Microsoft.Extensions.Options.ConfigurationExtensions 8.0.0 +Microsoft.Extensions.Logging.Configuration 8.0.0 -## Microsoft.Extensions.Options.ConfigurationExtensions +## Microsoft.Extensions.Logging.Configuration - Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0) -- License: [Apache-2.0](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Configuration/8.0.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) ``` @@ -5277,14 +6450,14 @@ SOFTWARE.
-Microsoft.Extensions.Options.ConfigurationExtensions 8.0.0 +Microsoft.Extensions.Logging.Configuration 8.0.1 -## Microsoft.Extensions.Options.ConfigurationExtensions +## Microsoft.Extensions.Logging.Configuration -- Version: 8.0.0 +- Version: 8.0.1 - 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.Logging.Configuration/8.0.1) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -5318,14 +6491,15 @@ SOFTWARE.
-Microsoft.Extensions.Primitives 8.0.0 +Microsoft.Extensions.Logging.Console 2.2.0 -## Microsoft.Extensions.Primitives +## Microsoft.Extensions.Logging.Console -- Version: 8.0.0 +- Version: 2.2.0 - Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Primitives/8.0.0) +- Owners: Microsoft +- Project URL: https://asp.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Console/2.2.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -5359,60 +6533,23 @@ SOFTWARE.
-Microsoft.IdentityModel.Abstractions 7.0.0 +Microsoft.Extensions.Logging.Console 8.0.0 -## Microsoft.IdentityModel.Abstractions +## Microsoft.Extensions.Logging.Console -- Version: 7.0.0 +- 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.Abstractions/7.0.0) -- 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.Logging.Console/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.Abstractions 7.1.2 - -## Microsoft.IdentityModel.Abstractions - -- 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/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 -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 @@ -5437,60 +6574,23 @@ SOFTWARE.
-Microsoft.IdentityModel.JsonWebTokens 7.0.0 +Microsoft.Extensions.Logging.Console 8.0.1 -## Microsoft.IdentityModel.JsonWebTokens +## Microsoft.Extensions.Logging.Console -- Version: 7.0.0 +- Version: 8.0.1 - 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.0) -- 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.Logging.Console/8.0.1) +- 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.JsonWebTokens 7.1.2 - -## Microsoft.IdentityModel.JsonWebTokens - -- 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/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 -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 @@ -5515,21 +6615,24 @@ SOFTWARE.
-Microsoft.IdentityModel.Logging 7.0.0 +Microsoft.Extensions.Logging.Debug 2.2.0 -## Microsoft.IdentityModel.Logging +## Microsoft.Extensions.Logging.Debug -- Version: 7.0.0 +- Version: 2.2.0 - 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.0) -- License: [MIT](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) +- Owners: Microsoft +- Project URL: https://asp.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Debug/2.2.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) ``` The MIT License (MIT) -Copyright (c) Microsoft Corporation +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 @@ -5554,21 +6657,23 @@ SOFTWARE.
-Microsoft.IdentityModel.Logging 7.1.2 +Microsoft.Extensions.Logging.Debug 8.0.0 -## Microsoft.IdentityModel.Logging +## Microsoft.Extensions.Logging.Debug -- Version: 7.1.2 +- 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.Logging/7.1.2) -- 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.Logging.Debug/8.0.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) ``` The MIT License (MIT) -Copyright (c) Microsoft Corporation +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 @@ -5593,21 +6698,23 @@ SOFTWARE.
-Microsoft.IdentityModel.Protocols 7.0.3 +Microsoft.Extensions.Logging.Debug 8.0.1 -## Microsoft.IdentityModel.Protocols +## Microsoft.Extensions.Logging.Debug -- Version: 7.0.3 +- Version: 8.0.1 - 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) +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Debug/8.0.1) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) ``` The MIT License (MIT) -Copyright (c) Microsoft Corporation +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 @@ -5632,21 +6739,23 @@ SOFTWARE.
-Microsoft.IdentityModel.Protocols.OpenIdConnect 7.0.3 +Microsoft.Extensions.Logging.EventLog 8.0.0 -## Microsoft.IdentityModel.Protocols.OpenIdConnect +## Microsoft.Extensions.Logging.EventLog -- 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.Logging.EventLog/8.0.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) ``` The MIT License (MIT) -Copyright (c) Microsoft Corporation +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 @@ -5671,21 +6780,23 @@ SOFTWARE.
-Microsoft.IdentityModel.Tokens 7.0.0 +Microsoft.Extensions.Logging.EventLog 8.0.1 -## Microsoft.IdentityModel.Tokens +## Microsoft.Extensions.Logging.EventLog -- Version: 7.0.0 +- Version: 8.0.1 - 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.0) -- 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.Logging.EventLog/8.0.1) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) ``` The MIT License (MIT) -Copyright (c) Microsoft Corporation +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 @@ -5710,21 +6821,23 @@ SOFTWARE.
-Microsoft.IdentityModel.Tokens 7.1.2 +Microsoft.Extensions.Logging.EventSource 8.0.0 -## Microsoft.IdentityModel.Tokens +## Microsoft.Extensions.Logging.EventSource -- Version: 7.1.2 +- 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.Tokens/7.1.2) -- 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.Logging.EventSource/8.0.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) ``` The MIT License (MIT) -Copyright (c) Microsoft Corporation +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 @@ -5749,19 +6862,23 @@ SOFTWARE.
-Microsoft.NET.Test.Sdk 17.10.0 +Microsoft.Extensions.Logging.EventSource 8.0.1 -## Microsoft.NET.Test.Sdk +## Microsoft.Extensions.Logging.EventSource -- Version: 17.10.0 +- Version: 8.0.1 - 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://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.EventSource/8.0.1) +- 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 @@ -5786,841 +6903,96 @@ SOFTWARE.
-Microsoft.NETCore.Platforms 1.1.0 +Microsoft.Extensions.ObjectPool 7.0.0 -## Microsoft.NETCore.Platforms +## Microsoft.Extensions.ObjectPool -- Version: 1.1.0 +- Version: 7.0.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) +- Project URL: https://asp.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.ObjectPool/7.0.0) +- License: [Apache-2.0](https://raw.githubusercontent.com/aspnet/AspNetCore/2.0.0/LICENSE.txt) ``` -.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. +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +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. ```
-Microsoft.NETCore.Platforms 2.1.2 +Microsoft.Extensions.Options 8.0.0 -## Microsoft.NETCore.Platforms +## Microsoft.Extensions.Options -- Version: 2.1.2 +- Version: 8.0.0 - Authors: Microsoft -- Owners: microsoft,dotnetframework - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.NETCore.Platforms/2.1.2) -- License: [MICROSOFT .NET LIBRARY License](http://go.microsoft.com/fwlink/?LinkId=329770) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Options/8.0.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) ``` -.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. -``` - -
- +The MIT License (MIT) -
-Microsoft.NETCore.Platforms 5.0.0 +Copyright (c) .NET Foundation and Contributors -## Microsoft.NETCore.Platforms +All rights reserved. -- 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: [MICROSOFT .NET LIBRARY License](http://go.microsoft.com/fwlink/?LinkId=329770) +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. -``` -.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. +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.NETCore.Targets 1.1.0 +Microsoft.Extensions.Options 8.0.2 -## Microsoft.NETCore.Targets +## Microsoft.Extensions.Options -- Version: 1.1.0 +- Version: 8.0.2 - 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) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Options/8.0.2) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) ``` -.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.OpenApi - -- Version: 1.6.14 -- 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) - +The MIT License (MIT) -``` -Copyright (c) Microsoft Corporation. All rights reserved. +Copyright (c) .NET Foundation and Contributors -MIT License +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 @@ -6632,7 +7004,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 @@ -6645,19 +7017,24 @@ SOFTWARE.
-Microsoft.TestPlatform.ObjectModel 17.10.0 +Microsoft.Extensions.Options.ConfigurationExtensions 2.2.0 -## Microsoft.TestPlatform.ObjectModel +## Microsoft.Extensions.Options.ConfigurationExtensions -- Version: 17.10.0 +- Version: 2.2.0 - 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) +- Owners: Microsoft +- Project URL: https://asp.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Options.ConfigurationExtensions/2.2.0) +- License: [Apache-2.0](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 @@ -6682,19 +7059,23 @@ SOFTWARE.
-Microsoft.TestPlatform.TestHost 17.10.0 +Microsoft.Extensions.Options.ConfigurationExtensions 8.0.0 -## Microsoft.TestPlatform.TestHost +## Microsoft.Extensions.Options.ConfigurationExtensions -- Version: 17.10.0 +- Version: 8.0.0 - Authors: Microsoft -- Project URL: https://github.com/microsoft/vstest -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.TestPlatform.TestHost/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.Extensions.Options.ConfigurationExtensions/8.0.0) +- License: [Apache-2.0](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 @@ -6719,229 +7100,62 @@ SOFTWARE.
-Microsoft.Win32.Primitives 4.3.0 +Microsoft.Extensions.Primitives 8.0.0 -## Microsoft.Win32.Primitives +## Microsoft.Extensions.Options.ConfigurationExtensions -- Version: 4.3.0 +- Version: 8.0.0 - Authors: Microsoft -- Owners: microsoft,dotnetframework - Project URL: https://dot.net/ -- 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) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Primitives/8.0.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) ``` -.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. +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.Win32.Registry 5.0.0 +Microsoft.IdentityModel.Abstractions 7.0.0 -## Microsoft.Win32.Registry +## Microsoft.IdentityModel.Abstractions -- Version: 5.0.0 +- Version: 7.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) +- Project URL: https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.IdentityModel.Abstractions/7.0.0) +- 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 @@ -6966,29286 +7180,131512 @@ SOFTWARE.
-Minio 6.0.2 +Microsoft.IdentityModel.Abstractions 7.0.3 -## Minio +## Microsoft.IdentityModel.Abstractions -- 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) +- 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) ``` -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. +The MIT License (MIT) - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. +Copyright (c) Microsoft Corporation - "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. +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: - "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). +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. - "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. +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. +``` - "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. +
+Microsoft.IdentityModel.Abstractions 7.1.2 - 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. +## Microsoft.IdentityModel.Abstractions - 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: +- 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/Microsoft.IdentityModel.Abstractions/7.1.2) +- License: [MIT](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) - (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 +``` +The MIT License (MIT) - (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 +Copyright (c) Microsoft Corporation - (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. +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: - 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. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. - 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. +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. +``` - 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. +
+Microsoft.IdentityModel.JsonWebTokens 7.0.0 - 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. +## Microsoft.IdentityModel.JsonWebTokens - END OF TERMS AND CONDITIONS +- Version: 7.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.JsonWebTokens/7.0.0) +- License: [MIT](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) - 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. +``` +The MIT License (MIT) - Copyright {yyyy} {name of copyright owner} +Copyright (c) Microsoft Corporation - 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 +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: - http://www.apache.org/licenses/LICENSE-2.0 +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. - 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. +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. ```
-Monai.Deploy.Messaging 2.0.3 +Microsoft.IdentityModel.JsonWebTokens 7.0.3 -## Monai.Deploy.Messaging +## Microsoft.IdentityModel.JsonWebTokens -- 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) +- 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) ``` -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ +The MIT License (MIT) - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION +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.1.2 + +## Microsoft.IdentityModel.JsonWebTokens + +- 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/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) 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.0 + +## Microsoft.IdentityModel.Logging + +- Version: 7.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.Logging/7.0.0) +- 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.Logging 7.1.2 + +## Microsoft.IdentityModel.Logging + +- 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/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) 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 7.1.2 + +## Microsoft.IdentityModel.Protocols + +- 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/Microsoft.IdentityModel.Protocols/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. +``` + +
+ + +
+Microsoft.IdentityModel.Protocols.OpenIdConnect 7.0.3 + +## Microsoft.IdentityModel.Protocols.OpenIdConnect + +- 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.OpenIdConnect/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.1.2 + +## Microsoft.IdentityModel.Protocols.OpenIdConnect + +- 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/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) 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.0 + +## Microsoft.IdentityModel.Tokens + +- Version: 7.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.Tokens/7.0.0) +- 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.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) 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.1.2 + +## Microsoft.IdentityModel.Tokens + +- 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/Microsoft.IdentityModel.Tokens/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. +``` + +
+ + +
+Microsoft.NET.Test.Sdk 17.8.0 + +## Microsoft.NET.Test.Sdk + +- Version: 17.8.0 +- Authors: Microsoft +- Project URL: https://github.com/microsoft/vstest +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/17.8.0) +- License: [MIT](https://github.com/microsoft/vstest/raw/v17.4.1/LICENSE) + + +``` +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 +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.NET.Test.Sdk 17.13.0 + +## Microsoft.NET.Test.Sdk + +- Version: 17.13.0 +- Authors: Microsoft +- Project URL: https://github.com/microsoft/vstest +- 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) + + +``` +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 +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.NET.Test.Sdk 17.14.0-preview-25107-01 + +## Microsoft.NET.Test.Sdk + +- Version: 17.14.0-preview-25107-01 +- Authors: Microsoft +- Project URL: https://github.com/microsoft/vstest +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/17.14.0-preview-25107-01) +- License: [MIT](https://github.com/microsoft/vstest/raw/v17.4.1/LICENSE) + + +``` +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 +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.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) + + +``` +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 +4 + + + + + + +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. +``` + +
+ + +
+Microsoft.NETCore.Platforms 2.1.2 + +## Microsoft.NETCore.Platforms + +- Version: 2.1.2 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.NETCore.Platforms/2.1.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 +4 + + + + + + +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. +``` + +
+ + +
+Microsoft.NETCore.Platforms 5.0.0 + +## Microsoft.NETCore.Platforms + +- 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: [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 +4 + + + + + + +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. +``` + +
+ + +
+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) + + +``` +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 +4 + + + + + + +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. +``` + +
+ + +
+Microsoft.OpenApi 1.2.3 + +## Microsoft.OpenApi + +- Version: 1.6.14 +- Authors: Microsoft +- Project URL: https://github.com/Microsoft/OpenAPI.NET +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.OpenApi/1.2.3) +- License: [MIT]( https://raw.githubusercontent.com/Microsoft/OpenAPI.NET/master/LICENSE) + + +``` +Copyright (c) Microsoft Corporation. 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 +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.OpenApi 1.6.23 + +## Microsoft.OpenApi + +- Version: 1.6.23 +- Authors: Microsoft +- 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) + + +``` +Copyright (c) Microsoft Corporation. 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 +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.TestPlatform.ObjectModel 17.8.0 + +## Microsoft.TestPlatform.ObjectModel + +- Version: 17.8.0 +- Authors: Microsoft +- Project URL: https://github.com/microsoft/vstest +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/17.8.0) +- License: [MIT](https://github.com/microsoft/vstest/raw/v17.4.1/LICENSE) + + +``` +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 +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.TestPlatform.ObjectModel 17.13.0 + +## Microsoft.TestPlatform.ObjectModel + +- Version: 17.13.0 +- Authors: Microsoft +- 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) + + +``` +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 +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.TestPlatform.ObjectModel 17.14.0-preview-25107-01 + +## Microsoft.TestPlatform.ObjectModel + +- Version: 17.14.0-preview-25107-01 +- Authors: Microsoft +- Project URL: https://github.com/microsoft/vstest +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/17.14.0-preview-25107-01) +- License: [MIT](https://github.com/microsoft/vstest/raw/v17.4.1/LICENSE) + + +``` +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 +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.TestPlatform.TestHost 17.8.0 + +## Microsoft.TestPlatform.TestHost + +- Version: 17.8.0 +- Authors: Microsoft +- Project URL: https://github.com/microsoft/vstest +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.TestPlatform.TestHost/17.8.0) +- License: [MIT](https://github.com/microsoft/vstest/raw/v17.4.1/LICENSE) + + +``` +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 +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.TestPlatform.TestHost 17.13.0 + +## Microsoft.TestPlatform.TestHost + +- Version: 17.13.0 +- Authors: Microsoft +- 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) + + +``` +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 +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.TestPlatform.TestHost 17.14.0-preview-25107-01 + +## Microsoft.TestPlatform.TestHost + +- Version: 17.14.0-preview-25107-01 +- Authors: Microsoft +- Project URL: https://github.com/microsoft/vstest +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.TestPlatform.TestHost/17.14.0-preview-25107-01) +- License: [MIT](https://github.com/microsoft/vstest/raw/v17.4.1/LICENSE) + + +``` +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 +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.Win32.Primitives 4.3.0 + +## Microsoft.Win32.Primitives + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- 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) + + +``` +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 +4 + + + + + + +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. +``` + +
+ + +
+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.1 + +## Minio + +- Version: 6.0.1 +- Authors: MinIO, Inc. +- Project URL: https://github.com/minio/minio-dotnet +- Source: [NuGet](https://www.nuget.org/packages/Minio/6.0.1) +- 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 + + (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. +``` + +
+ + +
+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 + + (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.2 + +## Monai.Deploy.Messaging + +- Version: 2.0.2 +- 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.2) +- 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 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.2 + +## Monai.Deploy.Messaging.RabbitMQ + +- Version: 2.0.2 +- 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.2) +- 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.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/ + + 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.0 + +## Monai.Deploy.Storage + +- Version: 1.0.0 +- 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.0) +- 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 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.0 + +## Monai.Deploy.Storage.MinIO + +- Version: 1.0.0 +- 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.0) +- 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.0 + +## Monai.Deploy.Storage.S3Policy + +- Version: 1.0.0 +- 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.0) +- 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. +``` + +
+ + +
+Mongo.Migration 3.1.4 + +## Mongo.Migration + +- Version: 3.1.4 +- Authors: Mongo.Migration +- Source: [NuGet](https://www.nuget.org/packages/Mongo.Migration/3.1.4) +- 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. +``` + +
+ + +
+MongoDB.Bson 2.23.1 + +## MongoDB.Bson + +- Version: 2.23.1 +- Authors: MongoDB Inc. +- Project URL: https://www.mongodb.com/docs/drivers/csharp/ +- Source: [NuGet](https://www.nuget.org/packages/MongoDB.Bson/2.23.1) +- 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. +``` + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + +
+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) + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this 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. +``` + +
+ + +
+MongoDB.Driver 2.13.1 + +## MongoDB.Driver + +- Version: 2.13.1 +- Authors: MongoDB Inc. +- Project URL: https://docs.mongodb.com/drivers/csharp/ +- Source: [NuGet](https://www.nuget.org/packages/MongoDB.Driver/2.13.1) +- 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.23.1 + +## MongoDB.Driver + +- Version: 2.23.1 +- Authors: MongoDB Inc. +- Project URL: https://www.mongodb.com/docs/drivers/csharp/ +- Source: [NuGet](https://www.nuget.org/packages/MongoDB.Driver/2.23.1) +- 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.13.1 + +## MongoDB.Driver.Core + +- Version: 2.13.1 +- Authors: MongoDB Inc. +- Project URL: https://docs.mongodb.com/drivers/csharp/ +- Source: [NuGet](https://www.nuget.org/packages/MongoDB.Driver.Core/2.13.1) +- 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.21.0 + +## MongoDB.Driver.Core + +- Version: 2.21.0 +- Authors: MongoDB Inc. +- Project URL: https://www.mongodb.com/docs/drivers/csharp/ +- Source: [NuGet](https://www.nuget.org/packages/MongoDB.Driver.Core/2.21.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.23.1 + +## MongoDB.Driver.Core + +- Version: 2.23.1 +- Authors: MongoDB Inc. +- Project URL: https://www.mongodb.com/docs/drivers/csharp/ +- Source: [NuGet](https://www.nuget.org/packages/MongoDB.Driver.Core/2.23.1) +- 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.2.2 + +## MongoDB.Libmongocrypt + +- Version: 1.2.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.2.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. + + "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.8.0 + +## MongoDB.Libmongocrypt + +- Version: 1.8.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.8.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. +``` + +
+ + +
+Moq 4.20.72 + +## Moq + +- Version: 4.20.72 +- Authors: Daniel Cazzulino, kzu +- Project URL: https://github.com/moq/moq +- Source: [NuGet](https://www.nuget.org/packages/Moq/4.20.72) +- 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 +4 + + + + + + +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 4.7.11 + +## NLog + +- Version: 4.7.11 +- Authors: Jarek Kowalski,Kim Christensen,Julian Verdurmen +- Owners: Jarek Kowalski,Kim Christensen,Julian Verdurmen +- Project URL: https://nlog-project.org/ +- Source: [NuGet](https://www.nuget.org/packages/NLog/4.7.11) +- 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 5.2.8 + +## NLog + +- Version: 5.2.8 +- Authors: Jarek Kowalski,Kim Christensen,Julian Verdurmen +- Project URL: https://nlog-project.org/ +- Source: [NuGet](https://www.nuget.org/packages/NLog/5.2.8) +- 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 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.3.8 + +## NLog.Extensions.Logging + +- Version: 5.3.8 +- 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.8) +- 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.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.3.8 + +## NLog.Web.AspNetCore + +- Version: 5.3.8 +- Authors: Julian Verdurmen +- Project URL: https://github.com/NLog/NLog.Web +- Source: [NuGet](https://www.nuget.org/packages/NLog.Web.AspNetCore/5.3.8) +- 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. +``` + +
+ + +
+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. +``` + +
+ + +
+NUnit 4.0.1 + +## NUnit + +- Version: 4.0.1 +- Authors: Charlie Poole, Rob Prouse +- Owners: Charlie Poole, Rob Prouse +- Project URL: https://nunit.org/ +- Source: [NuGet](https://www.nuget.org/packages/NUnit/4.0.1) +- License: [MIT](https://raw.githubusercontent.com/nunit/nunit/refs/heads/main/LICENSE.txt) + + +``` +Copyright (c) 2024 Charlie Poole, Rob Prouse + +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. +``` + +
+ + +
+NUnit 4.3.2 + +## NUnit + +- Version: 4.3.2 +- Authors: Charlie Poole, Rob Prouse +- Owners: Charlie Poole, Rob Prouse +- Project URL: https://nunit.org/ +- Source: [NuGet](https://www.nuget.org/packages/NUnit/4.3.2) +- License: [MIT](https://raw.githubusercontent.com/nunit/nunit/refs/heads/main/LICENSE.txt) + + +``` +Copyright (c) 2024 Charlie Poole, Rob Prouse + +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. +``` + +
+ + +
+NUnit3TestAdapter 4.5.0 + +## NUnit3TestAdapter + +- Version: 4.5.0 +- Authors: Charlie Poole, Terje Sandstrom +- Project URL: https://docs.nunit.org/articles/vs-test-adapter/Index.html +- Source: [NuGet](https://www.nuget.org/packages/NUnit3TestAdapter/4.5.0) +- License: [MIT](https://github.com/nunit/nunit3-vs-adapter/raw/master/LICENSE) + + +``` +MIT License + +Copyright (c) 2011-2020 Charlie Poole, 2014-2024 Terje Sandstrom + +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. +``` + +
+ + +
+NUnit3TestAdapter 4.6.0 + +## NUnit3TestAdapter + +- Version: 4.6.0 +- Authors: Charlie Poole, Terje Sandstrom +- Project URL: https://docs.nunit.org/articles/vs-test-adapter/Index.html +- Source: [NuGet](https://www.nuget.org/packages/NUnit3TestAdapter/4.6.0) +- License: [MIT](https://github.com/nunit/nunit3-vs-adapter/raw/master/LICENSE) + + +``` +MIT License + +Copyright (c) 2011-2020 Charlie Poole, 2014-2024 Terje Sandstrom + +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. +``` + +
+ + +
+Newtonsoft.Json.Bson 1.0.2 + +## Newtonsoft.Json.Bson + +- Version: 1.0.2 +- Authors: James Newton-King +- Owners: James Newton-King +- Project URL: http://www.newtonsoft.com/json +- Source: [NuGet](https://www.nuget.org/packages/Newtonsoft.Json.Bson/1.0.2) +- License: [MIT](https://github.com/JamesNK/Newtonsoft.Json.Bson/raw/master/LICENSE.md) + + +``` +The MIT License (MIT) + +Copyright (c) 2017 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.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 + + + +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. + +Data pulled from spdx/license-list-data on November 6, 2024. +``` + +
+ + +
+Polly 8.2.1 + +## Polly + +- Version: 8.2.1 +- Authors: Michael Wolfenden, App vNext +- Project URL: https://github.com/App-vNext/Polly +- Source: [NuGet](https://www.nuget.org/packages/Polly/8.2.1) +- License: [MIT]( https://licenses.nuget.org/MIT) + + +``` +'MIT' reference + + + +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. + +Data pulled from spdx/license-list-data on November 6, 2024. +``` + +
+ + +
+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://licenses.nuget.org/MIT) + + +``` +'MIT' reference + + + +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. + +Data pulled from spdx/license-list-data on November 6, 2024. +``` + +
+ + +
+Polly.Core 8.2.0 + +## 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) + + +``` +'MIT' reference + + + +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. + +Data pulled from spdx/license-list-data on November 6, 2024. +``` + +
+ + +
+Polly.Core 8.2.1 + +## Polly.Core + +- Version: 8.2.1 +- Authors: Michael Wolfenden, App vNext +- Project URL: https://github.com/App-vNext/Polly +- Source: [NuGet](https://www.nuget.org/packages/Polly.Core/8.2.1) +- License: [MIT]( https://licenses.nuget.org/MIT) + + +``` +'MIT' reference + + + +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. + +Data pulled from spdx/license-list-data on November 6, 2024. +``` + +
+ + +
+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://licenses.nuget.org/MIT) + + +``` +'MIT' reference + + + +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. + +Data pulled from spdx/license-list-data on November 6, 2024. +``` + +
+ + +
+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. + "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. +``` + +
+ + +
+Serilog 2.8.0 + +## Serilog + +- Version: 2.8.0 +- Authors: Serilog Contributors +- Owners: Serilog Contributors +- Project URL: https://github.com/serilog/serilog +- Source: [NuGet](https://www.nuget.org/packages/Serilog/2.8.0) +- License: [Apache-2.0](https://github.com/serilog/serilog/raw/dev/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: + +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that You +changed the files; and +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 +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. +``` + +
+ + +
+Serilog.Extensions.Logging 2.0.4 + +## Serilog.Extensions.Logging + +- Version: 2.0.4 +- Authors: Microsoft,Serilog Contributors +- Owners: Microsoft,Serilog Contributors +- Project URL: https://github.com/serilog/serilog-extensions-logging +- Source: [NuGet](https://www.nuget.org/packages/Serilog.Extensions.Logging/2.0.4) +- License: [Apache-2.0](https://github.com/serilog/serilog/raw/dev/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: + +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that You +changed the files; and +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 +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. +``` + +
+ + +
+Serilog.Extensions.Logging.File 2.0.0 + +## Serilog.Extensions.Logging.File + +- Version: 2.0.0 +- Authors: Serilog Contributors +- Owners: Serilog Contributors +- Project URL: https://github.com/serilog/serilog-extensions-logging-file +- Source: [NuGet](https://www.nuget.org/packages/Serilog.Extensions.Logging.File/2.0.0) +- License: [Apache-2.0](https://github.com/serilog/serilog/raw/dev/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: + +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that You +changed the files; and +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 +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. +``` + +
+ + +
+Serilog.Formatting.Compact 1.0.0 + +## Serilog.Formatting.Compact + +- Version: 1.0.0 +- Authors: Serilog Contributors +- Owners: Serilog Contributors +- Project URL: https://github.com/nblumhardt/serilog-formatters-compact +- Source: [NuGet](https://www.nuget.org/packages/Serilog.Formatting.Compact/1.0.0) +- License: [Apache-2.0](https://github.com/serilog/serilog/raw/dev/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: + +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that You +changed the files; and +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 +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. +``` + +
+ + +
+Serilog.Formatting.Compact 1.1.0 + +## Serilog.Formatting.Compact + +- Version: 1.1.0 +- Authors: Serilog Contributors +- Owners: Serilog Contributors +- Project URL: https://github.com/serilog/serilog-formatting-compact +- Source: [NuGet](https://www.nuget.org/packages/Serilog.Formatting.Compact/1.1.0) +- License: [Apache-2.0](https://github.com/serilog/serilog/raw/dev/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: + +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that You +changed the files; and +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 +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. +``` + +
+ + +
+Serilog.Sinks.Async 1.1.0 + +## Serilog.Sinks.Async + +- Version: 1.1.0 +- Authors: Jezz Santos,Serilog Contributors +- Owners: Jezz Santos,Serilog Contributors +- Project URL: https://serilog.net/ +- Source: [NuGet](https://www.nuget.org/packages/Serilog.Sinks.Async/1.1.0) +- License: [Apache-2.0](https://github.com/serilog/serilog/raw/dev/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: + +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that You +changed the files; and +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 +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. +``` + +
+ + +
+Serilog.Sinks.File 3.2.0 + +## Serilog.Sinks.File + +- Version: 3.2.0 +- Authors: Serilog Contributors +- Owners: Serilog Contributors +- Project URL: http://serilog.net/ +- Source: [NuGet](https://www.nuget.org/packages/Serilog.Sinks.File/3.2.0) +- License: [Apache-2.0](https://github.com/serilog/serilog/raw/dev/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: + +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that You +changed the files; and +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 +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. +``` + +
+ + +
+Serilog.Sinks.RollingFile 3.3.0 + +## Serilog.Sinks.RollingFile + +- Version: 3.3.0 +- Authors: Serilog Contributors +- Owners: Serilog Contributors +- Project URL: http://serilog.net/ +- Source: [NuGet](https://www.nuget.org/packages/Serilog.Sinks.RollingFile/3.3.0) +- License: [Apache-2.0](https://github.com/serilog/serilog/raw/dev/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: + +You must give any other recipients of the Work or Derivative Works a copy of +this License; and +You must cause any modified files to carry prominent notices stating that You +changed the files; and +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 +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.23.0 + +## SharpCompress + +- Version: 0.23.0 +- Authors: Adam Hathcock +- Owners: Adam Hathcock +- Project URL: https://github.com/adamhathcock/sharpcompress +- Source: [NuGet](https://www.nuget.org/packages/SharpCompress/0.23.0) +- 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. +``` + +
+ + +
+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). +``` + +
+ + +
+Snapshooter 0.14.0 + +## Snapshooter + +- Version: 0.14.0 +- Authors: Swiss Life authors and contributors +- Project URL: https://github.com/SwissLife-OSS/Snapshooter +- Source: [NuGet](https://www.nuget.org/packages/Snapshooter/0.14.0) +- License: [MIT](https://github.com/SwissLife-OSS/snapshooter/raw/master/LICENSE) + + +``` +MIT License + +Copyright (c) 2019 Swiss Life OSS + +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. +``` + +
+ + +
+Snapshooter.NUnit 0.14.0 + +## Snapshooter.NUnit + +- Version: 0.14.0 +- Authors: Swiss Life authors and contributors +- Project URL: https://github.com/SwissLife-OSS/Snapshooter +- Source: [NuGet](https://www.nuget.org/packages/Snapshooter.NUnit/0.14.0) +- License: [MIT](https://github.com/SwissLife-OSS/snapshooter/raw/master/LICENSE) + + +``` +MIT License + +Copyright (c) 2019 Swiss Life OSS + +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 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.NUnit 3.9.74 + +## SpecFlow.NUnit + +- Version: 3.9.74 +- Authors: SpecFlow Team +- Owners: SpecFlow Team +- Project URL: https://www.specflow.org/ +- Source: [NuGet](https://www.nuget.org/packages/SpecFlow.NUnit/3.9.74) +- 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: [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 +``` + +
+ + +
+StyleCop.Analyzers 1.1.118 + +## StyleCop.Analyzers + +- Version: 1.1.118 +- Authors: Sam Harwell et. al. +- Owners: Sam Harwell +- Project URL: https://github.com/DotNetAnalyzers/StyleCopAnalyzers +- Source: [NuGet](https://www.nuget.org/packages/StyleCop.Analyzers/1.1.118) +- License: [MIT](https://github.com/DotNetAnalyzers/StyleCopAnalyzers/raw/master/LICENSE) + + +``` +MIT License + +Copyright (c) Tunnel Vision Laboratories, LLC + +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 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. +``` + +
+ + +
+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 6.5.0 + +## 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. + +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 6.5.0 + +## 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. +``` + +
+ + +
+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 6.5.0 + +## 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 + +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.1.0 + +## System.AppContext + +- Version: 4.1.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.AppContext/4.1.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 +4 + + + + + + +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.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 +4 + + + + + + +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: [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.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: [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.0.11 + +## System.Collections + +- Version: 4.0.11 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Collections/4.0.11) +- 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 +4 + + + + + + +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 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 +4 + + + + + + +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.0.12 + +## System.Collections.Concurrent + +- Version: 4.0.12 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Collections.Concurrent/4.0.12) +- 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 +4 + + + + + + +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 +4 + + + + + + +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 8.0.0 + +## System.Collections.Immutable + +- Version: 8.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Collections.Immutable/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.Collections.NonGeneric 4.3.0 + +## System.Collections.NonGeneric + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Collections.NonGeneric/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 +4 + + + + + + +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.ComponentModel 4.3.0 + +## System.ComponentModel + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.ComponentModel/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 +4 + + + + + + +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.ComponentModel.Annotations 4.3.0 + +## System.ComponentModel.Annotations + +- Version: 4.3.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.ComponentModel.Annotations/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.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 +4 + + + + + + +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 +4 + + + + + + +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 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.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.EventLog 8.0.0 + +## System.Diagnostics.EventLog + +- Version: 8.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Diagnostics.EventLog/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 8.0.1 + +## System.Diagnostics.EventLog + +- Version: 8.0.1 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Diagnostics.EventLog/8.0.1) +- 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 +4 + + + + + + +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.1.0 + +## System.Diagnostics.Tracing + +- Version: 4.1.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Diagnostics.Tracing/4.1.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 +4 + + + + + + +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 +4 + + + + + + +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.Dynamic.Runtime 4.0.11 + +## System.Dynamic.Runtime + +- Version: 4.0.11 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Dynamic.Runtime/4.0.11) +- 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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 22.0.12 + +## System.IO.Abstractions.TestingHelpers + +- Version: 22.0.12 +- Authors: Tatham Oddie & friends +- Project URL: https://github.com/TestableIO/System.IO.Abstractions +- Source: [NuGet](https://www.nuget.org/packages/System.IO.Abstractions.TestingHelpers/22.0.12) +- 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 +4 + + + + + + +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 +4 + + + + + + +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.0.1 + +## System.IO.FileSystem + +- Version: 4.0.1 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.IO.FileSystem/4.0.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 +4 + + + + + + +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 +4 + + + + + + +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.0.1 + +## System.IO.FileSystem.Primitives + +- Version: 4.0.1 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.IO.FileSystem.Primitives/4.0.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 +4 + + + + + + +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 +4 + + + + + + +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://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.0.0 + +## System.IdentityModel.Tokens.Jwt + +- Version: 7.0.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.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/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.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 +4 + + + + + + +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.Expressions 4.1.0 + +## System.Linq.Expressions + +- Version: 4.1.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Linq.Expressions/4.1.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 +4 + + + + + + +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.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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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.0.12 + +## System.ObjectModel + +- Version: 4.0.12 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.ObjectModel/4.0.12) +- 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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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.0.1 + +## System.Reflection.Emit + +- Version: 4.0.1 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.Emit/4.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.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: [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.Emit.ILGeneration 4.0.1 + +## System.Reflection.Emit.ILGeneration + +- Version: 4.0.1 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.Emit.ILGeneration/4.0.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 +4 + + + + + + +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 +4 + + + + + + +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.0.1 + +## System.Reflection.Emit.Lightweight + +- Version: 4.0.1 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.Emit.Lightweight/4.0.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 +4 + + + + + + +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 +4 + + + + + + +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.0.1 + +## System.Reflection.Extensions + +- Version: 4.0.1 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.Extensions/4.0.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 +4 + + + + + + +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 +4 + + + + + + +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/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.Reflection.Metadata 8.0.0 + +## System.Reflection.Metadata + +- Version: 8.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.Metadata/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.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 +4 + + + + + + +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.1.0 + +## System.Reflection.TypeExtensions + +- Version: 4.1.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.TypeExtensions/4.1.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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 5.0.0 + +## System.Runtime.CompilerServices.Unsafe + +- Version: 5.0.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://github.com/dotnet/runtime +- Source: [NuGet](https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe/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.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/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.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 +4 + + + + + + +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.0.1 + +## System.Runtime.Handles + +- Version: 4.0.1 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Runtime.Handles/4.0.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 +4 + + + + + + +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 +4 + + + + + + +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.1.0 + +## System.Runtime.InteropServices + +- Version: 4.1.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Runtime.InteropServices/4.1.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 +4 + + + + + + +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 +4 + + + + + + +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.0.0 + +## System.Runtime.InteropServices.RuntimeInformation + +- Version: 4.0.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Runtime.InteropServices.RuntimeInformation/4.0.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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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: [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.Cng 4.5.0 + +## System.Security.Cryptography.Cng + +- Version: 4.5.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Security.Cryptography.Cng/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.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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 4.5.1 + +## System.Text.Encoding.CodePages + +- Version: 4.5.1 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Text.Encoding.CodePages/4.5.1) +- 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.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/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.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/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.CodePages 8.0.0 + +## System.Text.Encoding.CodePages + +- Version: 8.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Text.Encoding.CodePages/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.Encoding.Extensions 4.0.11 + +## System.Text.Encoding.Extensions + +- Version: 4.0.11 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Text.Encoding.Extensions/4.0.11) +- 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 +4 + + + + + + +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.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 +4 + + + + + + +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 4.5.0 + +## System.Text.Encodings.Web + +- Version: 4.5.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Text.Encodings.Web/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.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/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.Encodings.Web 7.0.0 + +## System.Text.Encodings.Web + +- Version: 7.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Text.Encodings.Web/7.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.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/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.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/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.Json 7.0.3 + +## System.Text.Json + +- Version: 7.0.3 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Text.Json/7.0.3) +- 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.Json 8.0.0 + +## System.Text.Json + +- Version: 8.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Text.Json/8.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.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/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.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 +4 + + + + + + +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 +4 + + + + + + +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/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.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/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.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/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.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 +4 + + + + + + +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: [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 +4 + + + + + + +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.5.1 + +## System.Threading.Tasks.Extensions + +- Version: 4.5.1 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Threading.Tasks.Extensions/4.5.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.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://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.Threading.Timer 4.0.1 + +## System.Threading.Timer + +- Version: 4.0.1 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Threading.Timer/4.0.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 +4 + + + + + + +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.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 +4 + + + + + + +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.ValueTuple 4.5.0 + +## System.ValueTuple + +- Version: 4.5.0 +- Authors: Microsoft +- Owners: microsoft,dotnetframework +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.ValueTuple/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.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 +4 + + + + + + +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 +4 + + + + + + +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 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.TestingHelpers 22.0.12 + +## TestableIO.System.IO.Abstractions.TestingHelpers + +- Version: 22.0.12 +- 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/22.0.12) +- 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. +``` + +
+ + +
+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. +``` + +
+ + +
+TestableIO.System.IO.Abstractions.Wrappers 22.0.12 + +## TestableIO.System.IO.Abstractions.Wrappers + +- Version: 22.0.12 +- 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/22.0.12) +- 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. +``` + +
+ + +
+Testably.Abstractions.FileSystem.Interface 9.0.0 + +## Testably.Abstractions.FileSystem.Interface + +- Version: 9.0.0 +- Authors: Testably +- Project URL: https://github.com/Testably/Testably.Abstractions +- Source: [NuGet](https://www.nuget.org/packages/Testably.Abstractions.FileSystem.Interface/9.0.0) +- License: [MIT](https://github.com/Testably/Testably.Abstractions/raw/main/LICENSE) + + +``` +MIT License + +Copyright (c) 2022 Valentin Breuß + +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. +``` + +
+ + +
+YamlDotNet 13.3.1 + +## YamlDotNet + +- Version: 13.3.1 +- Authors: Antoine Aubry +- Project URL: https://github.com/aaubry/YamlDotNet/wiki +- Source: [NuGet](https://www.nuget.org/packages/YamlDotNet/13.3.1) +- License: [MIT](https://github.com/aaubry/YamlDotNet/raw/master/LICENSE.txt) + + +``` +Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014 Antoine Aubry 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 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. +``` + +
+ + +
+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.0 + +## coverlet.collector + +- Version: 6.0.0 +- Authors: tonerdo +- Project URL: https://github.com/coverlet-coverage/coverlet +- Source: [NuGet](https://www.nuget.org/packages/coverlet.collector/6.0.0) +- 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. +``` + +
+ + +
+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) + + +``` +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) 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.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 + +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. +``` + +
+ + +
+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. +``` + +
+ + +
+prometheus-net 8.0.1 + +## prometheus-net + +- Version: 8.0.1 +- Authors: andrasm,qed-,lakario,sandersaares +- Project URL: https://github.com/prometheus-net/prometheus-net +- Source: [NuGet](https://www.nuget.org/packages/prometheus-net/8.0.1) +- License: [MIT](https://github.com/prometheus-net/prometheus-net/raw/master/LICENSE) + + +``` +The MIT License (MIT) + +Copyright (c) 2015 andrasm + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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 +4 + + + + + + +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. + + + + + + + + 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 +4 + + + + + + +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.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) + + +``` +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 +4 + + + + + + +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.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 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +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 +4 + + + + + + +Discussions + + + + + + + +Actions + + + + + + + +Security + + + + + + + +Insights + + + + + + + + +Additional navigation options + + + + + + + + + + + + + + Code + + + + + + + + - "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. + Issues - "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 + Pull requests - (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. + Discussions - 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.3 + Actions -## 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. - "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. + Security - "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 + Insights - (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 + 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: - 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. +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT ---- +More information: -Copyright (c) MONAI Consortium. All rights reserved. -Licensed under the [Apache-2.0](LICENSE) license. +Project copyright guidance -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). +Product distributions +Product distributions use the following license: -By downloading this software, you agree to the license terms & all licenses listed on the [third-party licenses](third-party-licenses.md) page. -``` +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 -
-Monai.Deploy.Security 1.0.0 +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. + -## 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) + + + + +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. ``` -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. +
+runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. +## runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl - "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. +- 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 - "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.1 -## 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/ - 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. +Skip to content - "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. +Navigation Menu - 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. +Toggle navigation - 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.1 + Sign in + -## 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) -``` -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. + Product + - "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 +GitHub Copilot + Write better code with AI + - (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. +Security + Find and fix vulnerabilities + - 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 +Actions + Automate any workflow + - 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. -``` -
+Codespaces + Instant dev environments + -
-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) -``` -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - 1. Definitions. +Issues + Plan and track work + - "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). +Code Review + Manage code changes + - "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 +Discussions + Collaborate outside of code + - (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 Search + Find more, search less + - 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] +Explore - 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. + All features ---- + -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. -``` + Documentation -
+ -
-Mongo.Migration 3.1.4 -## Mongo.Migration -- Version: 3.1.4 -- Authors: Mongo.Migration -- Source: [NuGet](https://www.nuget.org/packages/Mongo.Migration/3.1.4) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + GitHub Skills -``` -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. -``` + Blog -
+ -
-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) -``` -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. + Solutions + - "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. +By company size - "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. + Enterprises - 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 + Small and medium teams - (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. + Startups - 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. + Nonprofits - 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 +By use case - 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. -``` -
+ DevSecOps + -
-MongoDB.Driver 2.13.1 -## MongoDB.Driver -- Version: 2.13.1 -- Authors: MongoDB Inc. -- Project URL: https://docs.mongodb.com/drivers/csharp/ -- Source: [NuGet](https://www.nuget.org/packages/MongoDB.Driver/2.13.1) -- License: [Apache-2.0](https://raw.githubusercontent.com/mongodb/mongo-csharp-driver/master/LICENSE.md) + DevOps + -``` -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - 1. Definitions. + CI/CD - "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 use cases - "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. +By industry - 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 + Healthcare - (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. + Financial services - 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. + Manufacturing - 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. + Government + + + + + + View all industries + + + + + + + + + View all solutions + + - 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. -``` -
+ Resources + -
-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) -``` -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ +Topics - 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. + AI - "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. + DevOps - "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." + Security - "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: + Software Development - (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. + View all - 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 +Explore - 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} + Learning Pathways - 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.13.1 + Events & Webinars -## MongoDB.Driver.Core + -- Version: 2.13.1 -- Authors: MongoDB Inc. -- Project URL: https://docs.mongodb.com/drivers/csharp/ -- Source: [NuGet](https://www.nuget.org/packages/MongoDB.Driver.Core/2.13.1) -- 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. + Ebooks & Whitepapers - "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. + Customer Stories - "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. + Partners - "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 + Executive Insights - (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. + Open Source + - 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.21.0 +GitHub Sponsors + Fund open source developers + -## MongoDB.Driver.Core -- Version: 2.21.0 -- Authors: MongoDB Inc. -- Project URL: https://www.mongodb.com/docs/drivers/csharp/ -- Source: [NuGet](https://www.nuget.org/packages/MongoDB.Driver.Core/2.21.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. +The ReadME Project + GitHub community articles + - "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. +Repositories - "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." + Topics - "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: + Trending - (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. + Collections - 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. + Enterprise + + + + + + + - 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 +Enterprise platform + AI-powered developer platform + -## 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/ +Available add-ons - 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. +Advanced Security + Enterprise-grade security features + - "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. +Copilot for business + Enterprise-grade AI features + - 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. +Premium Support + Enterprise-grade 24/7 support + - 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. +Pricing - 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.2.2 -## MongoDB.Libmongocrypt -- Version: 1.2.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.2.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 +Search or jump to... - 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. +Search code, repositories, users, issues, pull requests... - "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. + Search + - 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 +Clear + + + + + - 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.8.2 -## MongoDB.Libmongocrypt -- 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. - "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. -``` -
+Search syntax tips -
-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) + Provide feedback + -``` -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. -``` -
+ +We read every piece of feedback, and take your input very seriously. -
-NETStandard.Library 1.6.1 +Include my email address so I can be contacted -## 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) + Cancel + Submit 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.  - -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 4.7.11 -## NLog -- Version: 4.7.11 -- Authors: Jarek Kowalski,Kim Christensen,Julian Verdurmen -- Owners: Jarek Kowalski,Kim Christensen,Julian Verdurmen -- Project URL: https://nlog-project.org/ -- Source: [NuGet](https://www.nuget.org/packages/NLog/4.7.11) -- 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. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: + Saved searches + +Use saved searches to filter your results more quickly -* 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 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. -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. +Name -* 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 +Query -## NLog.Extensions.Logging -- 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) + To see all available qualifiers, see our documentation. + + -``` -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. -``` + Cancel -
+ Create saved search -
-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. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: + Sign in + -* 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. + Sign up + +Reseting focus -* 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. -``` -
-
-NUnit 4.1.0 -## NUnit -- Version: 4.1.0 -- Authors: Charlie Poole, Rob Prouse -- Owners: Charlie Poole, Rob Prouse -- Project URL: https://nunit.org/ -- Source: [NuGet](https://www.nuget.org/packages/NUnit/4.1.0) -- License: [MIT](https://github.com/nunit/nunit/raw/master/LICENSE.txt) -``` -Copyright (c) 2024 Charlie Poole, Rob Prouse +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. + -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. +Dismiss alert -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. -``` -
-
-NUnit3TestAdapter 4.5.0 -## NUnit3TestAdapter -- Version: 4.5.0 -- Authors: Charlie Poole, Terje Sandstrom -- Project URL: https://docs.nunit.org/articles/vs-test-adapter/Index.html -- Source: [NuGet](https://www.nuget.org/packages/NUnit3TestAdapter/4.5.0) -- License: [MIT](https://github.com/nunit/nunit3-vs-adapter/raw/master/LICENSE) -``` -MIT License -Copyright (c) 2011-2020 Charlie Poole, 2014-2024 Terje Sandstrom -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) + dotnet + +/ -``` -The MIT License (MIT) +core -Copyright (c) 2007 James Newton-King +Public -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.Bson 1.0.2 +Notifications + You must be signed in to change notification settings -## Newtonsoft.Json.Bson -- Version: 1.0.2 -- Authors: James Newton-King -- Owners: James Newton-King -- Project URL: http://www.newtonsoft.com/json -- Source: [NuGet](https://www.nuget.org/packages/Newtonsoft.Json.Bson/1.0.2) -- License: [MIT](https://github.com/JamesNK/Newtonsoft.Json.Bson/raw/master/LICENSE.md) + +Fork + 4.9k -``` -The MIT License (MIT) -Copyright (c) 2017 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. -``` -
+ Star + 21.2k -
-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.2.0 +Code -## 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 -MIT License -SPDX identifier -MIT -License text +Issues +310 -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. +Pull requests +4 -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) +Discussions -``` -'MIT' reference -MIT License -SPDX identifier -MIT -License text -MIT License +Actions -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. -``` -
+Security -
-Polly.Core 8.2.0 -## 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) -``` -'MIT' reference +Insights -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 +Additional navigation options -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 -MIT License -SPDX identifier -MIT -License text + Code + + -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. -Data pulled from spdx/license-list-data on February 9, 2023. -``` -
+ Issues -
-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. + Pull requests - "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 + Discussions - (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. + Actions - 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. -``` -
-
-Serilog 2.8.0 -## Serilog -- Version: 2.8.0 -- Authors: Serilog Contributors -- Owners: Serilog Contributors -- Project URL: https://github.com/serilog/serilog -- Source: [NuGet](https://www.nuget.org/packages/Serilog/2.8.0) -- License: [Apache-2.0](https://github.com/serilog/serilog/raw/dev/LICENSE) -``` -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ + Security -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." + Insights -"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: -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -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 -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. + 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: -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. +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT -8. Limitation of Liability. +More information: -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. +Project copyright guidance -9. Accepting Warranty or Additional Liability. +Product distributions +Product distributions use the following license: -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. +On Linux and macOS: MIT license +On Windows: .NET Library License -END OF TERMS AND CONDITIONS +Product distributions include downloadable assets and runtime packs. +More information: -APPENDIX: How to apply the Apache License to your work +Windows license information. +.NET Asset Licensing Model -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. +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. + - 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. -``` -
-
-Serilog.Extensions.Logging 2.0.4 -## Serilog.Extensions.Logging +Footer -- Version: 2.0.4 -- Authors: Microsoft,Serilog Contributors -- Owners: Microsoft,Serilog Contributors -- Project URL: https://github.com/serilog/serilog-extensions-logging -- Source: [NuGet](https://www.nuget.org/packages/Serilog.Extensions.Logging/2.0.4) -- License: [Apache-2.0](https://github.com/serilog/serilog/raw/dev/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. + © 2025 GitHub, Inc. + -"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. +Footer navigation -"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). +Terms -"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." +Privacy -"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. +Security -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. +Status -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. +Docs -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: -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -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 -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. +Contact -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. + Manage cookies + + + + + + + Do not share my personal information + -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. ```
-Serilog.Extensions.Logging.File 2.0.0 +runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 -## Serilog.Extensions.Logging.File +## runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl -- Version: 2.0.0 -- Authors: Serilog Contributors -- Owners: Serilog Contributors -- Project URL: https://github.com/serilog/serilog-extensions-logging-file -- Source: [NuGet](https://www.nuget.org/packages/Serilog.Extensions.Logging.File/2.0.0) -- License: [Apache-2.0](https://github.com/serilog/serilog/raw/dev/LICENSE) +- 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) ``` -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ +core/license-information.md at main · dotnet/core · GitHub -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: -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -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 -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. -``` -
-
-Serilog.Formatting.Compact 1.0.0 -## Serilog.Formatting.Compact -- Version: 1.0.0 -- Authors: Serilog Contributors -- Owners: Serilog Contributors -- Project URL: https://github.com/nblumhardt/serilog-formatters-compact -- Source: [NuGet](https://www.nuget.org/packages/Serilog.Formatting.Compact/1.0.0) -- License: [Apache-2.0](https://github.com/serilog/serilog/raw/dev/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. +Skip to content -"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. +Navigation Menu -4. Redistribution. +Toggle navigation -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: -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -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 -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 + 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. -``` -
-
-Serilog.Formatting.Compact 1.1.0 -## Serilog.Formatting.Compact -- Version: 1.1.0 -- Authors: Serilog Contributors -- Owners: Serilog Contributors -- Project URL: https://github.com/serilog/serilog-formatting-compact -- Source: [NuGet](https://www.nuget.org/packages/Serilog.Formatting.Compact/1.1.0) -- License: [Apache-2.0](https://github.com/serilog/serilog/raw/dev/LICENSE) + Product + -``` -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. +GitHub Copilot + Write better code with AI + -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: -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -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 -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 + Find and fix vulnerabilities + -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. +Actions + Automate any workflow + -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] +Codespaces + Instant dev environments + + + + + + + + +Issues + Plan and track work + + + + + + + - 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 +Code Review + Manage code changes + - 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. -``` -
-
-Serilog.Sinks.Async 1.1.0 -## Serilog.Sinks.Async -- Version: 1.1.0 -- Authors: Jezz Santos,Serilog Contributors -- Owners: Jezz Santos,Serilog Contributors -- Project URL: https://serilog.net/ -- Source: [NuGet](https://www.nuget.org/packages/Serilog.Sinks.Async/1.1.0) -- License: [Apache-2.0](https://github.com/serilog/serilog/raw/dev/LICENSE) +Discussions + Collaborate outside of code + -``` -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. +Code Search + Find more, search less + -"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." +Explore -"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. + All features -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: + Documentation -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -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 -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. + GitHub Skills -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 + Blog -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. -``` -
-
-Serilog.Sinks.File 3.2.0 -## Serilog.Sinks.File -- Version: 3.2.0 -- Authors: Serilog Contributors -- Owners: Serilog Contributors -- Project URL: http://serilog.net/ -- Source: [NuGet](https://www.nuget.org/packages/Serilog.Sinks.File/3.2.0) -- License: [Apache-2.0](https://github.com/serilog/serilog/raw/dev/LICENSE) + Solutions + -``` -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. +By company size -"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. + Enterprises -"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." + Small and medium teams -"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. + Startups -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: -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -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 -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. + Nonprofits -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. +By use case -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. + DevSecOps -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 + DevOps -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 + CI/CD - 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. -``` + -
-
-Serilog.Sinks.RollingFile 3.3.0 + View all use cases -## Serilog.Sinks.RollingFile + -- Version: 3.3.0 -- Authors: Serilog Contributors -- Owners: Serilog Contributors -- Project URL: http://serilog.net/ -- Source: [NuGet](https://www.nuget.org/packages/Serilog.Sinks.RollingFile/3.3.0) -- License: [Apache-2.0](https://github.com/serilog/serilog/raw/dev/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. +By industry -"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. + Healthcare -"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. + Financial services -"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. + Manufacturing -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: + Government -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that You -changed the files; and -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 -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. + View all industries -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. + View all solutions + + + + -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] + Resources + - 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.23.0 +Topics -## SharpCompress -- Version: 0.23.0 -- Authors: Adam Hathcock -- Owners: Adam Hathcock -- Project URL: https://github.com/adamhathcock/sharpcompress -- Source: [NuGet](https://www.nuget.org/packages/SharpCompress/0.23.0) -- License: [MIT](https://github.com/adamhathcock/sharpcompress/raw/master/LICENSE.txt) + AI -``` -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. + DevOps -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. -``` + -
-
-SharpCompress 0.30.1 + Security -## 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) + Software Development -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. -``` + View all -
+ -
-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-2020, Google, Inc. and Snappier Authors -All rights reserved. +Explore -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. + Learning Pathways -=== + -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). -``` + Events & Webinars -
+ -
-Snapshooter 0.14.1 -## Snapshooter -- Version: 0.14.1 -- Authors: Swiss Life authors and contributors -- Project URL: https://github.com/SwissLife-OSS/Snapshooter -- Source: [NuGet](https://www.nuget.org/packages/Snapshooter/0.14.1) -- License: [MIT](https://github.com/SwissLife-OSS/snapshooter/raw/master/LICENSE) + Ebooks & Whitepapers -``` -MIT License + -Copyright (c) 2019 Swiss Life OSS -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. + Customer Stories -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. -``` + -
-
-Snapshooter.NUnit 0.14.1 + Partners -## Snapshooter.NUnit + -- Version: 0.14.1 -- Authors: Swiss Life authors and contributors -- Project URL: https://github.com/SwissLife-OSS/Snapshooter -- Source: [NuGet](https://www.nuget.org/packages/Snapshooter.NUnit/0.14.1) -- License: [MIT](https://github.com/SwissLife-OSS/snapshooter/raw/master/LICENSE) -``` -MIT License -Copyright (c) 2019 Swiss Life OSS -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: + Executive Insights -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 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: [BSD-3-Clause](https://github.com/SpecFlowOSS/SpecFlow/raw/master/LICENSE.txt) -``` -SpecFlow License (New BSD License) + Open Source + -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) +GitHub Sponsors + Fund open source developers + -``` -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.NUnit 3.9.74 +The ReadME Project + GitHub community articles + -## SpecFlow.NUnit -- Version: 3.9.74 -- Authors: SpecFlow Team -- Owners: SpecFlow Team -- Project URL: https://www.specflow.org/ -- Source: [NuGet](https://www.nuget.org/packages/SpecFlow.NUnit/3.9.74) -- License: [BSD-3-Clause](https://github.com/SpecFlowOSS/SpecFlow/raw/master/LICENSE.txt) -``` -SpecFlow License (New BSD License) +Repositories -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. + Topics -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.Plus.LivingDocPlugin 3.9.57 + Trending -## 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: [BSD-3-Clause](https://github.com/SpecFlowOSS/SpecFlow/raw/master/LICENSE.txt) -``` -SpecFlow License (New BSD License) + Collections -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 -- 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: [BSD-3-Clause](https://github.com/SpecFlowOSS/SpecFlow/raw/master/LICENSE.txt) + Enterprise + -``` -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. -``` -
-
-StyleCop.Analyzers 1.1.118 -## StyleCop.Analyzers -- Version: 1.1.118 -- Authors: Sam Harwell et. al. -- Owners: Sam Harwell -- Project URL: https://github.com/DotNetAnalyzers/StyleCopAnalyzers -- Source: [NuGet](https://www.nuget.org/packages/StyleCop.Analyzers/1.1.118) -- License: [MIT](https://github.com/DotNetAnalyzers/StyleCopAnalyzers/raw/master/LICENSE) -``` -MIT License +Enterprise platform + AI-powered developer platform + -Copyright (c) Tunnel Vision Laboratories, LLC -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. -``` +Available add-ons -
-
-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) +Advanced Security + Enterprise-grade security features + -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 6.6.2 +Copilot for business + Enterprise-grade AI features + -## 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. +Premium Support + Enterprise-grade 24/7 support + -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) +Pricing -``` -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 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) +Search or jump to... -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.1.0 +Search code, repositories, users, issues, pull requests... -## System.AppContext + -- Version: 4.1.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.AppContext/4.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. -``` -
+ Search + -
-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) -``` -.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.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: [MIT](https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) -``` -The MIT License (MIT) +Clear + + + + + + + -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.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: [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.0.11 -## System.Collections -- Version: 4.0.11 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Collections/4.0.11) -- 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.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) -``` -.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.Collections.Concurrent 4.0.12 -## System.Collections.Concurrent -- Version: 4.0.12 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Collections.Concurrent/4.0.12) -- 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.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) -``` -.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 -
-
-System.Collections.NonGeneric 4.3.0 -## System.Collections.NonGeneric -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Collections.NonGeneric/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.ComponentModel 4.3.0 -## System.ComponentModel -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.ComponentModel/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. -``` + Provide feedback + -
-
-System.ComponentModel.Annotations 4.3.0 -## System.ComponentModel.Annotations -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.ComponentModel.Annotations/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. + +We read every piece of feedback, and take your input very seriously. -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. +Include my email address so I can be contacted -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 + Submit feedback -
-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. -``` + Saved searches + +Use saved searches to filter your results more quickly -
-
-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. -``` -
+Name -
-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) -``` -.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. -``` -
+Query -
-System.Diagnostics.Debug 4.3.0 -## System.Diagnostics.Debug + To see all available qualifiers, see our documentation. + + -- 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. -``` -
+ Cancel -
-System.Diagnostics.DiagnosticSource 4.3.0 + Create saved search -## 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. + Sign in + -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 up + +Reseting focus -
-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: +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. + -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. -``` +Dismiss alert -
-
-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.EventLog 8.0.0 -## System.Diagnostics.EventLog -- Version: 8.0.0 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Diagnostics.EventLog/8.0.0) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + dotnet + +/ -``` -The MIT License (MIT) +core -Copyright (c) .NET Foundation and Contributors +Public -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 -
-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) +Fork + 4.9k -``` -.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.Diagnostics.Tracing 4.1.0 -## System.Diagnostics.Tracing + Star + 21.2k -- Version: 4.1.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Diagnostics.Tracing/4.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. -``` -
-
-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) -``` -.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.Dynamic.Runtime 4.0.11 -## System.Dynamic.Runtime +Code -- Version: 4.0.11 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Dynamic.Runtime/4.0.11) -- 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 4.3.0 -## System.Globalization +Issues +310 -- 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 +Pull requests +4 -## 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. -``` -
+Discussions -
-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 - - - - -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. -``` -
+Actions -
-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) -``` -.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. -``` -
+Security -
-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) -``` -.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 -
-System.IO.FileSystem 4.0.1 -## System.IO.FileSystem -- Version: 4.0.1 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.IO.FileSystem/4.0.1) -- 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. -``` -
+Additional navigation options -
-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) -``` -.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.IO.FileSystem.Primitives 4.0.1 -## System.IO.FileSystem.Primitives -- Version: 4.0.1 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.IO.FileSystem.Primitives/4.0.1) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + Code -``` -.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.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 - - - - -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.Hashing 8.0.0 + Issues -## 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://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. -``` -
+ Pull requests -
-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. -``` -
+ Discussions -
-System.IdentityModel.Tokens.Jwt 7.0.0 -## System.IdentityModel.Tokens.Jwt -- Version: 7.0.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.0) -- 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. -``` -
+ Actions + -
-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. -``` + Security -
-
-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) -``` -.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.Linq.Expressions 4.1.0 -## System.Linq.Expressions + Insights -- Version: 4.1.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Linq.Expressions/4.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. -``` -
-
-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 + 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: -## System.Memory +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT -- 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) +More information: +Project copyright guidance -``` -The MIT License (MIT) +Product distributions +Product distributions use the following license: -Copyright (c) .NET Foundation and Contributors +On Linux and macOS: MIT license +On Windows: .NET Library License -All rights reserved. +Product distributions include downloadable assets and runtime packs. +More information: -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: +Windows license information. +.NET Asset Licensing Model -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +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. + -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 - - - - -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. -``` +Footer -
-
-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 - -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. -``` -
+ © 2025 GitHub, Inc. + -
-System.Net.Primitives 4.3.0 +Footer navigation -## 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) +Terms -``` -.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. -``` +Privacy -
+Security -
-System.Net.Sockets 4.3.0 -## System.Net.Sockets +Status -- 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) +Docs -``` -.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. -``` -
+Contact -
-System.ObjectModel 4.0.12 -## System.ObjectModel -- Version: 4.0.12 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.ObjectModel/4.0.12) -- License: [MICROSOFT .NET LIBRARY License](http://go.microsoft.com/fwlink/?LinkId=329770) + Manage cookies + -``` -.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.ObjectModel 4.3.0 + Do not share my personal information + -## 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) -``` -.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.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. + You can’t perform that action at this time. ```
-System.Reflection 4.3.0 +runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 -## System.Reflection +## runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl -- Version: 4.3.0 +- Version: 4.3.2 - 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) +- 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 - - - - -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. -``` +core/license-information.md at main · dotnet/core · GitHub -
-
-System.Reflection.Emit 4.0.1 -## System.Reflection.Emit -- Version: 4.0.1 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.Emit/4.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.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: [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.Emit.ILGeneration 4.0.1 -## System.Reflection.Emit.ILGeneration -- Version: 4.0.1 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.Emit.ILGeneration/4.0.1) -- 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.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 - - - - -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.Reflection.Emit.Lightweight 4.0.1 -## System.Reflection.Emit.Lightweight -- Version: 4.0.1 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.Emit.Lightweight/4.0.1) -- 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. -``` -
+Skip to content -
-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) -``` -.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.Reflection.Extensions 4.0.1 -## System.Reflection.Extensions -- Version: 4.0.1 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.Extensions/4.0.1) -- 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. -``` +Navigation Menu -
+Toggle navigation -
-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) + -``` -.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.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. + Sign in + -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) -``` -.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. -``` + Product + -
-
-System.Reflection.TypeExtensions 4.1.0 -## System.Reflection.TypeExtensions -- Version: 4.1.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.TypeExtensions/4.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. -``` -
-
-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) +GitHub Copilot + Write better code with AI + -``` -.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.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) +Security + Find and fix vulnerabilities + -``` -.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 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) +Actions + Automate any workflow + -``` -.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.CompilerServices.Unsafe 5.0.0 -## System.Runtime.CompilerServices.Unsafe -- Version: 5.0.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://github.com/dotnet/runtime -- Source: [NuGet](https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe/5.0.0) -- License: [MIT](https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) +Codespaces + Instant dev environments + -``` -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. -``` -
+Issues + Plan and track work + -
-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/corefx/raw/master/LICENSE.TXT) -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors +Code Review + Manage code changes + -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 +Discussions + Collaborate outside of code + -## 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 - -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.0.1 +Code Search + Find more, search less + + + + + + + +Explore + + + + All features + + -## System.Runtime.Handles -- Version: 4.0.1 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Runtime.Handles/4.0.1) -- License: [MICROSOFT .NET LIBRARY License](http://go.microsoft.com/fwlink/?LinkId=329770) + Documentation -``` -.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.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 Skills + -``` -.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.InteropServices 4.1.0 -## System.Runtime.InteropServices + Blog -- Version: 4.1.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Runtime.InteropServices/4.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. -``` -
-
-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) -``` -.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. -``` -
+ Solutions + -
-System.Runtime.InteropServices.RuntimeInformation 4.0.0 -## System.Runtime.InteropServices.RuntimeInformation -- Version: 4.0.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Runtime.InteropServices.RuntimeInformation/4.0.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. -``` +By company size -
-
-System.Runtime.InteropServices.RuntimeInformation 4.3.0 + Enterprises -## 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) -``` -.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. -``` + Small and medium teams -
+ -
-System.Runtime.Loader 4.3.0 -## System.Runtime.Loader + Startups -- 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 - - - - -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. -``` -
+ Nonprofits + -
-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) +By use case -``` -.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. -``` -
+ DevSecOps -
-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) + DevOps -``` -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: + CI/CD -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.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) -``` -.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. -``` -
+By industry -
-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: [MIT](https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) + Healthcare + -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors -All rights reserved. + Financial services -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. -``` -
+ Manufacturing + -
-System.Security.Cryptography.Cng 4.5.0 -## System.Security.Cryptography.Cng -- Version: 4.5.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Security.Cryptography.Cng/4.5.0) -- License: [MIT](https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) + Government + -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors -All rights reserved. + View all industries -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.Csp 4.3.0 -## System.Security.Cryptography.Csp + View all solutions + -- 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 + Resources + -## 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. -``` -
+Topics -
-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) + AI + -``` -.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. -``` -
+ DevOps -
-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) + 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. -``` + -
-
-System.Security.Cryptography.ProtectedData 4.4.0 + Software Development -## 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) + View all -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. -``` -
+Explore -
-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) + Learning Pathways + -``` -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. + Events & Webinars -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) + Ebooks & Whitepapers + -``` -.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. -``` -
+ Customer Stories -
-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) + Partners -``` -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. -``` + Executive Insights -
+ -
-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. + Open Source + -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) -``` -.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 Sponsors + Fund open source developers + -
-
-System.Text.Encoding.CodePages 4.5.1 -## System.Text.Encoding.CodePages -- Version: 4.5.1 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Text.Encoding.CodePages/4.5.1) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors +The ReadME Project + GitHub community articles + -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. -``` +Repositories -
-
-System.Text.Encoding.CodePages 6.0.0 + Topics -## 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/runtime/raw/main/LICENSE.TXT) -``` -The MIT License (MIT) + Trending -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. + Collections -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.CodePages 8.0.0 -## System.Text.Encoding.CodePages -- Version: 8.0.0 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Text.Encoding.CodePages/8.0.0) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors + Enterprise + -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.0.11 -## System.Text.Encoding.Extensions -- Version: 4.0.11 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Text.Encoding.Extensions/4.0.11) -- 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.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) +Available add-ons -``` -.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.Text.Encodings.Web 4.5.0 -## System.Text.Encodings.Web -- Version: 4.5.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Text.Encodings.Web/4.5.0) -- License: [MIT](https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) +Advanced Security + Enterprise-grade security 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. -``` -
+Copilot for business + Enterprise-grade AI features + -
-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/corefx/raw/master/LICENSE.TXT) -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors +Premium Support + Enterprise-grade 24/7 support + -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 7.0.0 +Pricing -## System.Text.Encodings.Web -- Version: 7.0.0 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Text.Encodings.Web/7.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.Text.Encodings.Web 8.0.0 +Search or jump to... -## 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/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: +Search code, repositories, users, issues, pull requests... -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 6.0.9 + Search + -## 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/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.Json 7.0.3 -## System.Text.Json +Clear + -- Version: 7.0.3 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Text.Json/7.0.3) -- 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.Json 8.0.0 -## System.Text.Json -- Version: 8.0.0 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Text.Json/8.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.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) -``` -.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 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 - - - - -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.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/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.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/runtime/raw/main/LICENSE.TXT) +Search syntax tips -``` -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.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/runtime/raw/main/LICENSE.TXT) -``` -The MIT License (MIT) + Provide feedback + -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.Threading.Tasks 4.3.0 -## System.Threading.Tasks + +We read every piece of feedback, and take your input very seriously. -- 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) +Include my email address so I can be contacted -``` -.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. -``` -
+ Cancel + Submit feedback -
-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: [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.Threading.Tasks.Extensions 4.5.1 -## System.Threading.Tasks.Extensions -- Version: 4.5.1 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Threading.Tasks.Extensions/4.5.1) -- License: [MIT](https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) + Saved searches + +Use saved searches to filter your results more quickly -``` -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.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://github.com/dotnet/corefx/raw/master/LICENSE.TXT) -``` -The MIT License (MIT) +Name -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. -``` -
+Query -
-System.Threading.Timer 4.0.1 -## System.Threading.Timer + To see all available qualifiers, see our documentation. + + -- Version: 4.0.1 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Threading.Timer/4.0.1) -- 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. -``` -
+ Cancel -
-System.Threading.Timer 4.3.0 + Create saved search -## 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 - - - - -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.ValueTuple 4.5.0 -## System.ValueTuple + Sign in + -- Version: 4.5.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.ValueTuple/4.5.0) -- License: [MIT](https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) + Sign up + +Reseting focus -``` -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.Xml.ReaderWriter 4.3.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.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) +Dismiss alert -``` -.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: -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. -``` + dotnet + +/ -
+core +Public -
-TestableIO.System.IO.Abstractions.TestingHelpers 21.0.2 -## TestableIO.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/TestableIO.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 +Notifications + You must be signed in to change notification settings -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. +Fork + 4.9k -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.0.2 + -## 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) + Star + 21.2k -``` -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. -``` -
-
-YamlDotNet 15.1.0 -## YamlDotNet -- Version: 15.1.0 -- Authors: Antoine Aubry -- Project URL: https://github.com/aaubry/YamlDotNet/wiki -- Source: [NuGet](https://www.nuget.org/packages/YamlDotNet/15.1.0) -- License: [MIT](https://github.com/aaubry/YamlDotNet/raw/master/LICENSE.txt) -``` -Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014 Antoine Aubry and contributors +Code -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. -``` -
-
-ZstdSharp.Port 0.7.3 -## ZstdSharp.Port +Issues +310 -- 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. +Pull requests +4 -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) +Discussions -``` -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. -``` -
+Actions -
-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 +Security -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. +Insights ----- 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. - */ +Additional navigation options + ----- 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. + Code -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. + Issues -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) + Pull requests -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. -``` -
-
-prometheus-net 8.0.1 -## prometheus-net -- Version: 8.0.1 -- Authors: andrasm,qed-,lakario,sandersaares -- Project URL: https://github.com/prometheus-net/prometheus-net -- Source: [NuGet](https://www.nuget.org/packages/prometheus-net/8.0.1) -- License: [MIT](https://github.com/prometheus-net/prometheus-net/raw/master/LICENSE) -``` -The MIT License (MIT) + Discussions -Copyright (c) 2015 andrasm -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) -``` -.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. -``` + Actions -
-
-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) -``` -.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.23-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 -## runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl + Security -- 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) -``` -.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.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. -``` -
+ Insights -
-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) -``` -.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. -``` + 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: -
-runtime.native.System 4.3.0 +Project copyright guidance -## runtime.native.System +Product distributions +Product distributions use the following license: -- 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) +On Linux and macOS: MIT license +On Windows: .NET Library License +Product distributions include downloadable assets and runtime packs. +More information: -``` -.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. -``` +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. + -
-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) -``` -.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. -``` -
+Footer -
-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 - -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 + © 2025 GitHub, Inc. + -## 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) +Footer 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. - -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. -``` +Terms -
+Privacy -
-runtime.native.System.Security.Cryptography.Apple 4.3.0 -## runtime.native.System.Security.Cryptography.Apple +Security + + +Status + + +Docs -- 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) +Contact -``` -.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 + Manage cookies + -## 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. -``` -
+ Do not share my personal information + -
-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 - -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.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) -``` -.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. + + + + You can’t perform that action at this time. ```
-runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 +xunit 2.7.0 -## runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl +## xunit -- 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) +- Version: 2.7.0 +- Authors: jnewkirk,bradwilson +- Source: [NuGet](https://www.nuget.org/packages/xunit/2.7.0) +- License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) ``` -.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. -``` - -
+Unless otherwise noted, the source code here is covered by the following license: + Copyright (c) .NET Foundation and Contributors + All Rights Reserved -
-runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 + 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 -## runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl + http://www.apache.org/licenses/LICENSE-2.0 -- 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) + 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. +----------------------- -``` -.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. -``` +The code in src/common/AssemblyResolution/Microsoft.DotNet.PlatformAbstractions was imported from: + https://github.com/dotnet/core-setup/tree/v2.0.1/src/managed/Microsoft.DotNet.PlatformAbstractions -
+The code in src/common/AssemblyResolution/Microsoft.DotNet.PlatformAbstractions was imported from: + https://github.com/dotnet/core-setup/tree/v2.0.1/src/managed/Microsoft.Extensions.DependencyModel +Both sets of code are covered by the following license: -
-runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 + The MIT License (MIT) -## runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl + Copyright (c) 2015 .NET Foundation -- 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) + 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. -``` -.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. + 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.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple 4.3.0 +xunit 2.9.3 -## runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple +## xunit -- 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) +- Version: 2.9.3 +- Authors: jnewkirk,bradwilson +- Source: [NuGet](https://www.nuget.org/packages/xunit/2.9.3) +- License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) ``` -.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. -``` - -
+Unless otherwise noted, the source code here is covered by the following license: + Copyright (c) .NET Foundation and Contributors + All Rights Reserved -
-runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 + 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 -## runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl + http://www.apache.org/licenses/LICENSE-2.0 -- 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) + 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. +----------------------- -``` -.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. -``` +The code in src/common/AssemblyResolution/Microsoft.DotNet.PlatformAbstractions was imported from: + https://github.com/dotnet/core-setup/tree/v2.0.1/src/managed/Microsoft.DotNet.PlatformAbstractions -
+The code in src/common/AssemblyResolution/Microsoft.DotNet.PlatformAbstractions was imported from: + https://github.com/dotnet/core-setup/tree/v2.0.1/src/managed/Microsoft.Extensions.DependencyModel +Both sets of code are covered by the following license: -
-runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 + The MIT License (MIT) -## runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl + Copyright (c) 2015 .NET Foundation -- 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) + 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. -``` -.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. + 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.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 +xunit.abstractions 2.0.3 -## runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl +## xunit.abstractions -- 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) +- Version: 2.0.3 +- Authors: James Newkirk,Brad Wilson +- Owners: James Newkirk,Brad Wilson +- Project URL: https://github.com/xunit/xunit +- Source: [NuGet](https://www.nuget.org/packages/xunit.abstractions/2.0.3) +- License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) ``` -.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. -``` - -
+Unless otherwise noted, the source code here is covered by the following license: + Copyright (c) .NET Foundation and Contributors + All Rights Reserved -
-runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 + 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 -## runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl + http://www.apache.org/licenses/LICENSE-2.0 -- 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) + 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. +----------------------- -``` -.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. -``` +The code in src/common/AssemblyResolution/Microsoft.DotNet.PlatformAbstractions was imported from: + https://github.com/dotnet/core-setup/tree/v2.0.1/src/managed/Microsoft.DotNet.PlatformAbstractions -
+The code in src/common/AssemblyResolution/Microsoft.DotNet.PlatformAbstractions was imported from: + https://github.com/dotnet/core-setup/tree/v2.0.1/src/managed/Microsoft.Extensions.DependencyModel +Both sets of code are covered by the following license: -
-runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 + The MIT License (MIT) -## runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl + Copyright (c) 2015 .NET Foundation -- 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) + 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. -``` -.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. + 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.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 +xunit.analyzers 1.11.0 -## runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl +## xunit.analyzers -- 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) +- Version: 1.11.0 +- Authors: jnewkirk,bradwilson,marcind +- Source: [NuGet](https://www.nuget.org/packages/xunit.analyzers/1.11.0) +- License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit.analyzers/master/LICENSE) ``` -.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. +Copyright (c) .NET Foundation and Contributors +All Rights Reserved + +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. ```
-runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 +xunit.analyzers 1.18.0 -## runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl +## xunit.analyzers -- 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) +- Version: 1.18.0 +- Authors: jnewkirk,bradwilson,marcind +- Source: [NuGet](https://www.nuget.org/packages/xunit.analyzers/1.18.0) +- License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit.analyzers/master/LICENSE) ``` -.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. +Copyright (c) .NET Foundation and Contributors +All Rights Reserved + +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. ```
-runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 +xunit.assert 2.7.0 -## runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl +## xunit.assert -- 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) +- Version: 2.7.0 +- Authors: jnewkirk,bradwilson +- Source: [NuGet](https://www.nuget.org/packages/xunit.assert/2.7.0) +- License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) ``` -.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. -``` - -
+Unless otherwise noted, the source code here is covered by the following license: + Copyright (c) .NET Foundation and Contributors + All Rights Reserved -
-runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 + 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 -## runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl + http://www.apache.org/licenses/LICENSE-2.0 -- 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) + 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. +----------------------- -``` -.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. -``` +The code in src/common/AssemblyResolution/Microsoft.DotNet.PlatformAbstractions was imported from: + https://github.com/dotnet/core-setup/tree/v2.0.1/src/managed/Microsoft.DotNet.PlatformAbstractions -
+The code in src/common/AssemblyResolution/Microsoft.DotNet.PlatformAbstractions was imported from: + https://github.com/dotnet/core-setup/tree/v2.0.1/src/managed/Microsoft.Extensions.DependencyModel +Both sets of code are covered by the following license: -
-runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 + The MIT License (MIT) -## runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl + Copyright (c) 2015 .NET Foundation -- 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) + 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. ``` -.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. -``` - -
- - -
-xunit 2.8.1 -## xunit +
+ + +
+xunit.assert 2.9.3 + +## xunit.assert -- Version: 2.8.1 +- Version: 2.9.3 - Authors: jnewkirk,bradwilson -- Source: [NuGet](https://www.nuget.org/packages/xunit/2.8.1) +- Source: [NuGet](https://www.nuget.org/packages/xunit.assert/2.9.3) - License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) @@ -36304,15 +138744,13 @@ Both sets of code are covered by the following license:
-xunit.abstractions 2.0.3 +xunit.core 2.7.0 -## xunit.abstractions +## xunit.core -- Version: 2.0.3 -- Authors: James Newkirk,Brad Wilson -- Owners: James Newkirk,Brad Wilson -- Project URL: https://github.com/xunit/xunit -- Source: [NuGet](https://www.nuget.org/packages/xunit.abstractions/2.0.3) +- Version: 2.7.0 +- Authors: jnewkirk,bradwilson +- Source: [NuGet](https://www.nuget.org/packages/xunit.core/2.7.0) - License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) @@ -36371,44 +138809,78 @@ Both sets of code are covered by the following license:
-xunit.analyzers 1.14.0 +xunit.core 2.9.3 -## xunit.analyzers +## xunit.core -- Version: 1.14.0 -- Authors: jnewkirk,bradwilson,marcind -- Source: [NuGet](https://www.nuget.org/packages/xunit.analyzers/1.14.0) -- License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit.analyzers/master/LICENSE) +- Version: 2.9.3 +- Authors: jnewkirk,bradwilson +- Source: [NuGet](https://www.nuget.org/packages/xunit.core/2.9.3) +- License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) ``` -Copyright (c) .NET Foundation and Contributors -All Rights Reserved +Unless otherwise noted, the source code here is covered by the following license: -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 + Copyright (c) .NET Foundation and Contributors + All Rights Reserved - http://www.apache.org/licenses/LICENSE-2.0 + 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 -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. + 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. + +----------------------- + +The code in src/common/AssemblyResolution/Microsoft.DotNet.PlatformAbstractions was imported from: + https://github.com/dotnet/core-setup/tree/v2.0.1/src/managed/Microsoft.DotNet.PlatformAbstractions + +The code in src/common/AssemblyResolution/Microsoft.DotNet.PlatformAbstractions was imported from: + https://github.com/dotnet/core-setup/tree/v2.0.1/src/managed/Microsoft.Extensions.DependencyModel + +Both sets of code are covered by the following license: + + The MIT License (MIT) + + Copyright (c) 2015 .NET Foundation + + 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. ```
-xunit.assert 2.8.1 +xunit.extensibility.core 2.7.0 -## xunit.assert +## xunit.extensibility.core -- Version: 2.8.1 +- Version: 2.7.0 - Authors: jnewkirk,bradwilson -- Source: [NuGet](https://www.nuget.org/packages/xunit.assert/2.8.1) +- Source: [NuGet](https://www.nuget.org/packages/xunit.extensibility.core/2.7.0) - License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) @@ -36467,13 +138939,13 @@ Both sets of code are covered by the following license:
-xunit.core 2.8.1 +xunit.extensibility.core 2.9.3 -## xunit.core +## xunit.extensibility.core -- Version: 2.8.1 +- Version: 2.9.3 - Authors: jnewkirk,bradwilson -- Source: [NuGet](https://www.nuget.org/packages/xunit.core/2.8.1) +- Source: [NuGet](https://www.nuget.org/packages/xunit.extensibility.core/2.9.3) - License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) @@ -36532,13 +139004,13 @@ Both sets of code are covered by the following license:
-xunit.extensibility.core 2.8.1 +xunit.extensibility.execution 2.7.0 -## xunit.extensibility.core +## xunit.extensibility.execution -- Version: 2.8.1 +- Version: 2.7.0 - Authors: jnewkirk,bradwilson -- Source: [NuGet](https://www.nuget.org/packages/xunit.extensibility.core/2.8.1) +- Source: [NuGet](https://www.nuget.org/packages/xunit.extensibility.execution/2.7.0) - License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) @@ -36597,13 +139069,13 @@ Both sets of code are covered by the following license:
-xunit.extensibility.execution 2.8.1 +xunit.extensibility.execution 2.9.3 ## xunit.extensibility.execution -- Version: 2.8.1 +- Version: 2.9.3 - Authors: jnewkirk,bradwilson -- Source: [NuGet](https://www.nuget.org/packages/xunit.extensibility.execution/2.8.1) +- Source: [NuGet](https://www.nuget.org/packages/xunit.extensibility.execution/2.9.3) - License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) @@ -36662,13 +139134,67 @@ Both sets of code are covered by the following license:
-xunit.runner.visualstudio 2.8.1 +xunit.runner.visualstudio 2.5.6 + +## xunit.runner.visualstudio + +- Version: 2.5.6 +- Authors: jnewkirk,bradwilson +- Source: [NuGet](https://www.nuget.org/packages/xunit.runner.visualstudio/2.5.6) +- License: [MIT]( https://licenses.nuget.org/MIT) + + +``` +'MIT' reference + + + +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. + +Data pulled from spdx/license-list-data on November 6, 2024. +``` + +
+ + +
+xunit.runner.visualstudio 3.0.2 ## xunit.runner.visualstudio -- Version: 2.8.1 +- Version: 3.0.2 - Authors: jnewkirk,bradwilson -- Source: [NuGet](https://www.nuget.org/packages/xunit.runner.visualstudio/2.8.1) +- Source: [NuGet](https://www.nuget.org/packages/xunit.runner.visualstudio/3.0.2) - License: [MIT]( https://licenses.nuget.org/MIT) @@ -36709,7 +139235,7 @@ 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. +Data pulled from spdx/license-list-data on November 6, 2024. ```
diff --git a/guidelines/mwm-developer-setup.md b/guidelines/mwm-developer-setup.md index 2805972d5..736342a31 100755 --- a/guidelines/mwm-developer-setup.md +++ b/guidelines/mwm-developer-setup.md @@ -21,7 +21,7 @@ - python 3 installed. - Helm 3 https://helm.sh/docs/intro/install/ - rabbitmqadmin https://www.rabbitmq.com/management-cli.html -- mc.exe https://github.com/minio/mc install and add its location to the storage_settings_executableLocation setting (appsettings.local.json) including the name itself ! ie `mc.exe` if its in the folder of the running executable (\bin\Debug\net8.0). +- mc.exe https://github.com/minio/mc install and add its location to the storage_settings_executableLocation setting (appsettings.local.json) including the name itself ! ie `mc.exe` if its in the folder of the running executable (\bin\Debug\net8.0). (for TaskManager) Note. if you already have docker container for Minio Rabbit etc running Stop these. @@ -44,6 +44,7 @@ To disable argo authentication run ]}]' Note. below Im using bash as its my preferred option, But if you to are using bash and your on windows (wsl2) you MUST make sure you windows .kube/config is also pointing to the same K8's cluster, this is because the code running in vs will look in there for the context to write k8's secrets too! +you can do this by coping the relevent sections from ~/.kube/config to C:\Users\yourname\.kube\config now in a bash window (can be cmd or powershell) @@ -73,6 +74,21 @@ from a bash terminal in the root folder of the project - `helm upgrade -i -n argo -f deploy/helm/rabbitmq-local.yaml rabbit deploy/helm` ### running in VisualStudio +--- +### NEW +------ +You must now also run Informaticsgateway (mig), this is a separate project and is required for the workflow to validate and run. + +### create an AETitle in the mig +below assumes you are running mig on port 5010. +``` +curl -X POST 'http://localhost:5010/config/destination' -H 'Content-Type: application/json' -d '{"name": "MY_SCANNER", "hostIp": "127.0.0.1", "port": 10, "aeTitle": "MY_SCANNER"}' + +``` + + +---- + Now assuming your launchSettings in workflow manager has the line `"ASPNETCORE_ENVIRONMENT": "Local"` AND in taskManager has the line @@ -181,7 +197,7 @@ You can use Mongo Compass, with connection string `mongodb://root:rootpassword@l ### now we need an argo template to run. navigate to [https://localhost:2746/workflow-templates?namespace=argo](https://localhost:2746/workflow-templates?namespace=argo) proceed passed the warnings about been insecure. (Chrome, click advance and then proceed to destination) click on `CREATE NEW WORKFLOW TEMPLATE` button top left. -set the name to `name: simple-workflow` so it matches the workflow we posted above. +set the name to `name: simple-workflow` and its namespace to `namespace: argo` so it matches the workflow we posted above. then click the `Create` button. switch the tab back to [workflows](https://localhost:2746/workflows?limit=50) in the left menu @@ -190,7 +206,7 @@ switch the tab back to [workflows](https://localhost:2746/workflows?limit=50) in In the command below replace xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx with the new workflowId from above ie. `9235f5e8-9ad2-44d2-8b41-2c1e4d2464c6` -```rabbitmqadmin -u admin -p admin -P 30672 -V monaideploy publish exchange=monaideploy routing_key=md.workflow.request properties="{\"app_id\": \"16988a78-87b5-4168-a5c3-2cfc2bab8e54\",\"type\": \"WorkflowRequestMessage\",\"message_id\": \"0277e763-316c-4104-aeda-3620e7a642c7\",\"correlation_id\":\"ab482a7c-4da7-4e76-8d36-d194dd35555e\",\"content_type\": \"application/json\"}" payload="{\"payload_id\":\"00000000-1000-0000-0000-000000000000\",\"workflows\":[\"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx\"],\"file_count\":0,\"correlation_id\":\"e4b06f00-5ce3-4477-86cb-4f3bf20680c2\",\"bucket\":\"bucket1\",\"calling_aetitle\":\"MWM\",\"called_aetitle\":\"Basic_AE_3\",\"timestamp\":\"2022-07-13T11:34:34.8428704+01:00\"}"``` +```rabbitmqadmin -u admin -p admin -P 30672 -V monaideploy publish exchange=monaideploy routing_key=md.workflow.request properties="{\"app_id\": \"16988a78-87b5-4168-a5c3-2cfc2bab8e54\",\"type\": \"WorkflowRequestMessage\",\"message_id\": \"0277e763-316c-4104-aeda-3620e7a642c7\",\"correlation_id\":\"ab482a7c-4da7-4e76-8d36-d194dd35555e\",\"content_type\": \"application/json\"}" payload="{\"payload_id\":\"00000000-1000-0000-0000-000000000000\",\"workflows\":[\"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx\"],\"trigger\":{\"source\":\"MY_SCANNER\",\"destination\":\"PROD_PACS\"},\"file_count\":0,\"correlation_id\":\"e4b06f00-5ce3-4477-86cb-4f3bf20680c2\",\"bucket\":\"bucket1\",\"calling_aetitle\":\"MWM\",\"called_aetitle\":\"Basic_AE_3\",\"timestamp\":\"2022-07-13T11:34:34.8428704+01:00\"}"``` paste the above (with the proper workflowId) into bash and press enter. diff --git a/src/Common/Configuration/Monai.Deploy.WorkflowManager.Common.Configuration.csproj b/src/Common/Configuration/Monai.Deploy.WorkflowManager.Common.Configuration.csproj index 0ea0d623b..45e235861 100644 --- a/src/Common/Configuration/Monai.Deploy.WorkflowManager.Common.Configuration.csproj +++ b/src/Common/Configuration/Monai.Deploy.WorkflowManager.Common.Configuration.csproj @@ -26,8 +26,8 @@ - - + + diff --git a/src/Common/Configuration/packages.lock.json b/src/Common/Configuration/packages.lock.json index 884c4217e..bbcd1705b 100644 --- a/src/Common/Configuration/packages.lock.json +++ b/src/Common/Configuration/packages.lock.json @@ -4,44 +4,44 @@ "net8.0": { "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.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)" } }, "Microsoft.Extensions.Configuration.Abstractions": { @@ -54,34 +54,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", @@ -93,22 +92,22 @@ }, "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.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": { @@ -127,10 +126,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" } }, @@ -139,31 +138,26 @@ "resolved": "13.0.3", "contentHash": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==" }, - "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" } }, "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/Common/Miscellaneous/Monai.Deploy.WorkflowManager.Common.Miscellaneous.csproj b/src/Common/Miscellaneous/Monai.Deploy.WorkflowManager.Common.Miscellaneous.csproj index 84a936347..b4e50f0cd 100644 --- a/src/Common/Miscellaneous/Monai.Deploy.WorkflowManager.Common.Miscellaneous.csproj +++ b/src/Common/Miscellaneous/Monai.Deploy.WorkflowManager.Common.Miscellaneous.csproj @@ -39,7 +39,7 @@ - + diff --git a/src/Common/Miscellaneous/packages.lock.json b/src/Common/Miscellaneous/packages.lock.json index e1e3f9e2c..c8966cb1e 100644 --- a/src/Common/Miscellaneous/packages.lock.json +++ b/src/Common/Miscellaneous/packages.lock.json @@ -4,50 +4,50 @@ "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" } }, "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", @@ -73,34 +73,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", @@ -112,14 +111,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": { @@ -136,10 +135,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": { @@ -158,32 +157,32 @@ }, "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" } }, @@ -199,16 +198,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.Runtime.CompilerServices.Unsafe": { @@ -218,28 +220,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", @@ -248,22 +240,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.workflowmanager.common.configuration": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )" } } } diff --git a/src/TaskManager/API/Monai.Deploy.WorkflowManager.TaskManager.API.csproj b/src/TaskManager/API/Monai.Deploy.WorkflowManager.TaskManager.API.csproj index 807cab474..f76fb28cf 100644 --- a/src/TaskManager/API/Monai.Deploy.WorkflowManager.TaskManager.API.csproj +++ b/src/TaskManager/API/Monai.Deploy.WorkflowManager.TaskManager.API.csproj @@ -32,8 +32,8 @@ - + - + \ No newline at end of file diff --git a/src/TaskManager/API/packages.lock.json b/src/TaskManager/API/packages.lock.json index d0bffd172..02624997c 100644 --- a/src/TaskManager/API/packages.lock.json +++ b/src/TaskManager/API/packages.lock.json @@ -4,14 +4,14 @@ "net8.0": { "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" } }, "Mongo.Migration": { @@ -38,9 +38,9 @@ }, "MongoDB.Bson": { "type": "Direct", - "requested": "[2.25.0, )", - "resolved": "2.25.0", - "contentHash": "xQx/qtC2nu9oGiyNqAwfiDpUMweLi0nID677cyKykpwmj5AVMrnd//UwmcmuX95178DeY6rf7cjmA613TQXPiA==", + "requested": "[2.23.1, )", + "resolved": "2.23.1", + "contentHash": "IX9tycM35xK5hFwnU+rzharPJOtKYtON6E6Lp2nwOVjh40TUcS/HYToEEWZkLgqKNMCfYPK3Fz3QUCxzhkQRGA==", "dependencies": { "System.Memory": "4.5.5", "System.Runtime.CompilerServices.Unsafe": "5.0.0" @@ -48,8 +48,8 @@ }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "DnsClient": { "type": "Transitive", @@ -134,34 +134,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", @@ -173,14 +172,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": { @@ -196,10 +195,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": { @@ -438,11 +437,6 @@ "System.Runtime": "4.3.0" } }, - "System.Diagnostics.DiagnosticSource": { - "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" - }, "System.Diagnostics.Tracing": { "type": "Transitive", "resolved": "4.1.0", @@ -477,11 +471,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": { @@ -664,15 +658,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" } } } diff --git a/src/TaskManager/Database/Monai.Deploy.WorkflowManager.TaskManager.Database.csproj b/src/TaskManager/Database/Monai.Deploy.WorkflowManager.TaskManager.Database.csproj index 07cd0268f..bd7ea5255 100755 --- a/src/TaskManager/Database/Monai.Deploy.WorkflowManager.TaskManager.Database.csproj +++ b/src/TaskManager/Database/Monai.Deploy.WorkflowManager.TaskManager.Database.csproj @@ -27,7 +27,7 @@ - + diff --git a/src/TaskManager/Database/packages.lock.json b/src/TaskManager/Database/packages.lock.json index 4cfa272a9..c5e3ce83c 100644 --- a/src/TaskManager/Database/packages.lock.json +++ b/src/TaskManager/Database/packages.lock.json @@ -4,20 +4,20 @@ "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" } }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", @@ -118,34 +118,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", @@ -157,14 +156,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": { @@ -180,10 +179,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": { @@ -259,13 +258,13 @@ }, "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" } }, "Mongo.Migration": { @@ -291,8 +290,8 @@ }, "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" @@ -300,14 +299,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", @@ -316,8 +315,8 @@ }, "MongoDB.Libmongocrypt": { "type": "Transitive", - "resolved": "1.8.2", - "contentHash": "z/8JCULSHM1+mzkau0ivIkU9kIn8JEFFSkmYTSaMaWMMHt96JjUtMKuXxeGNGSnHZ5290ZPKIlQfjoWFk2sKog==" + "resolved": "1.12.0", + "contentHash": "B1X51jrtNacKvxKoaqWeknYeJfQS5aWf6BmVLT5JZerz3AUXFzv8edPskJYqBc3kLy1J2PWzMqqsnyb9g8FtcA==" }, "Newtonsoft.Json": { "type": "Transitive", @@ -468,11 +467,6 @@ "System.Runtime": "4.3.0" } }, - "System.Diagnostics.DiagnosticSource": { - "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" - }, "System.Diagnostics.Tracing": { "type": "Transitive", "resolved": "4.1.0", @@ -507,11 +501,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": { @@ -699,15 +693,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": { @@ -718,9 +712,9 @@ "monai.deploy.workflowmanager.taskmanager.api": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.3, )", + "Monai.Deploy.Messaging": "[2.0.4, )", "Mongo.Migration": "[3.1.4, )", - "MongoDB.Bson": "[2.25.0, )" + "MongoDB.Bson": "[2.23.1, )" } } } diff --git a/src/TaskManager/Plug-ins/AideClinicalReview/packages.lock.json b/src/TaskManager/Plug-ins/AideClinicalReview/packages.lock.json index 36ac72152..7e70b9f0e 100644 --- a/src/TaskManager/Plug-ins/AideClinicalReview/packages.lock.json +++ b/src/TaskManager/Plug-ins/AideClinicalReview/packages.lock.json @@ -4,26 +4,26 @@ "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==" }, "DnsClient": { "type": "Transitive", @@ -32,19 +32,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" } }, @@ -94,8 +94,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", @@ -137,34 +137,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", @@ -176,14 +175,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": { @@ -200,10 +199,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": { @@ -270,32 +269,32 @@ }, "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" } }, @@ -322,8 +321,8 @@ }, "MongoDB.Bson": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "xQx/qtC2nu9oGiyNqAwfiDpUMweLi0nID677cyKykpwmj5AVMrnd//UwmcmuX95178DeY6rf7cjmA613TQXPiA==", + "resolved": "2.23.1", + "contentHash": "IX9tycM35xK5hFwnU+rzharPJOtKYtON6E6Lp2nwOVjh40TUcS/HYToEEWZkLgqKNMCfYPK3Fz3QUCxzhkQRGA==", "dependencies": { "System.Memory": "4.5.5", "System.Runtime.CompilerServices.Unsafe": "5.0.0" @@ -505,8 +504,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.Tracing": { "type": "Transitive", @@ -542,11 +544,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": { @@ -670,11 +672,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.Encoding.Extensions": { "type": "Transitive", @@ -689,20 +688,13 @@ }, "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": { "type": "Transitive", @@ -745,37 +737,37 @@ }, "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.workflowmanager.common.configuration": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )" } }, "monai.deploy.workflowmanager.common.miscellaneous": { "type": "Project", "dependencies": { "Monai.Deploy.WorkflowManager.Common.Configuration": "[1.0.0, )", - "fo-dicom": "[5.1.2, )" + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.workflowmanager.taskmanager.api": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.3, )", + "Monai.Deploy.Messaging": "[2.0.4, )", "Mongo.Migration": "[3.1.4, )", - "MongoDB.Bson": "[2.25.0, )" + "MongoDB.Bson": "[2.23.1, )" } } } diff --git a/src/TaskManager/Plug-ins/Argo/Monai.Deploy.WorkflowManager.TaskManager.Argo.csproj b/src/TaskManager/Plug-ins/Argo/Monai.Deploy.WorkflowManager.TaskManager.Argo.csproj index 768cb7159..a6139a5ba 100755 --- a/src/TaskManager/Plug-ins/Argo/Monai.Deploy.WorkflowManager.TaskManager.Argo.csproj +++ b/src/TaskManager/Plug-ins/Argo/Monai.Deploy.WorkflowManager.TaskManager.Argo.csproj @@ -27,8 +27,8 @@ - - + + diff --git a/src/TaskManager/Plug-ins/Argo/packages.lock.json b/src/TaskManager/Plug-ins/Argo/packages.lock.json index a7ac4265f..da61ed5b8 100644 --- a/src/TaskManager/Plug-ins/Argo/packages.lock.json +++ b/src/TaskManager/Plug-ins/Argo/packages.lock.json @@ -4,45 +4,45 @@ "net8.0": { "KubernetesClient": { "type": "Direct", - "requested": "[14.0.2, )", - "resolved": "14.0.2", - "contentHash": "Ul7SLe34fLwOahsJKFf2InqcuRTCIBr3mW1PtabXlYeCJeP7yPiYyrGxilLn2+HIq1C5AoMTydhGcdNLbc/f9w==", + "requested": "[12.1.1, )", + "resolved": "12.1.1", + "contentHash": "Xvc6Kr/W5YUxlMDzy0R80zy+Vd66brS7fSA4COGXu8KZACKPW7+KKS7kxZBLaFYGrUcktXOHpqNNuoukSGcK6A==", "dependencies": { - "Fractions": "7.3.0", + "Fractions": "7.2.1", "IdentityModel.OidcClient": "5.2.1", - "System.Diagnostics.DiagnosticSource": "7.0.0", - "System.IdentityModel.Tokens.Jwt": "7.1.2", - "YamlDotNet": "15.1.0" + "System.IdentityModel.Tokens.Jwt": "7.0.0", + "YamlDotNet": "13.3.1", + "prometheus-net": "8.0.1" } }, "Microsoft.Extensions.ApiDescription.Client": { "type": "Direct", - "requested": "[8.0.6, )", - "resolved": "8.0.6", - "contentHash": "BIA0X1sx0WxCUD0wFjD9u9P0kMBCA9khN4PCISfjE0xThHW3VMRjXlopxbNLFSyiSySVYlnBpuXBHYHYs9eHJA==" + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "R7QsrA6RwSgAgjhV8zcGOEFWqvsAaKVk3WPwkXIoKaB91dFNp+IDwh9vH+WqTIJTg5DIKVocCokHXAjyTPD+2Q==" }, "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", @@ -51,26 +51,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" } }, "Fractions": { "type": "Transitive", - "resolved": "7.3.0", - "contentHash": "2bETFWLBc8b7Ut2SVi+bxhGVwiSpknHYGBh2PADyGWONLkTxT7bKyDRhF8ao+XUv90tq8Fl7GTPxSI5bacIRJw==" + "resolved": "7.2.1", + "contentHash": "1gVCo18/02ZZOJ+dcpVNMsUHF6cLmltMMskUWl2G1l+0OmTTvcwJZq5/JXIVpvOzPM3gDLombsloGMlTQNcv9g==" }, "IdentityModel": { "type": "Transitive", @@ -132,8 +132,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", @@ -175,34 +175,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", @@ -214,14 +213,24 @@ }, "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": { + "type": "Transitive", + "resolved": "3.1.0", + "contentHash": "DLigdcV0nYaT6/ly0rnfP80BnXq8NNd/h8/SkfY39uio7Bd9LauVntp6RcRh1Kj23N+uf80GgL7Win6P3BCtoQ==", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0", + "Microsoft.Extensions.Logging": "3.1.0", + "Microsoft.Extensions.Options": "3.1.0" } }, "Microsoft.Extensions.Logging": { @@ -238,10 +247,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": { @@ -271,6 +280,11 @@ "Microsoft.Extensions.Logging": "2.2.0" } }, + "Microsoft.Extensions.ObjectPool": { + "type": "Transitive", + "resolved": "7.0.0", + "contentHash": "udvKco0sAVgYGTBnHUb0tY9JQzJ/nPDiv/8PIyz69wl1AibeCDZOLVVI+6156dPfHmJH7ws5oUJRiW4ZmAvuuA==" + }, "Microsoft.Extensions.Options": { "type": "Transitive", "resolved": "8.0.2", @@ -298,31 +312,31 @@ }, "Microsoft.IdentityModel.Abstractions": { "type": "Transitive", - "resolved": "7.1.2", - "contentHash": "33eTIA2uO/L9utJjZWbKsMSVsQf7F8vtd6q5mQX7ZJzNvCpci5fleD6AeANGlbbb7WX7XKxq9+Dkb5e3GNDrmQ==" + "resolved": "7.0.0", + "contentHash": "7iSWSRR72VKeonFdfDi43Lvkca98Y0F3TmmWhRSuHbkjk/IKUSO0Qd272LQFZpi5eDNQNbUXy3o4THXhOAU6cw==" }, "Microsoft.IdentityModel.JsonWebTokens": { "type": "Transitive", - "resolved": "7.1.2", - "contentHash": "cloLGeZolXbCJhJBc5OC05uhrdhdPL6MWHuVUnkkUvPDeK7HkwThBaLZ1XjBQVk9YhxXE2OvHXnKi0PLleXxDg==", + "resolved": "7.0.0", + "contentHash": "N+hUPsFZs+IhlMU+qmX8NnYVB9uMxVdcWoPIhKo4oHDR/yuIFh19SVZeFby15cm8S9yedynOcfs7TU5oDCheZw==", "dependencies": { - "Microsoft.IdentityModel.Tokens": "7.1.2" + "Microsoft.IdentityModel.Tokens": "7.0.0" } }, "Microsoft.IdentityModel.Logging": { "type": "Transitive", - "resolved": "7.1.2", - "contentHash": "YCxBt2EeJP8fcXk9desChkWI+0vFqFLvBwrz5hBMsoh0KJE6BC66DnzkdzkJNqMltLromc52dkdT206jJ38cTw==", + "resolved": "7.0.0", + "contentHash": "6I35Kt2/PQZAyUYLo3+QgT/LubZ5/4Ojelkbyo8KKdDgjMbVocAx2B3P5V7iMCz+rsAe/RLr6ql87QKnHtI+aw==", "dependencies": { - "Microsoft.IdentityModel.Abstractions": "7.1.2" + "Microsoft.IdentityModel.Abstractions": "7.0.0" } }, "Microsoft.IdentityModel.Tokens": { "type": "Transitive", - "resolved": "7.1.2", - "contentHash": "oICJMqr3aNEDZOwnH5SK49bR6Z4aX0zEAnOLuhloumOSuqnNq+GWBdQyrgILnlcT5xj09xKCP/7Y7gJYB+ls/g==", + "resolved": "7.0.0", + "contentHash": "dxYqmmFLsjBQZ6F6a4XDzrZ1CTxBRFVigJvWiNtXiIsT6UlYMxs9ONMaGx9XKzcxmcgEQ2ADuCqKZduz0LR9Hw==", "dependencies": { - "Microsoft.IdentityModel.Logging": "7.1.2" + "Microsoft.IdentityModel.Logging": "7.0.0" } }, "Microsoft.NETCore.Platforms": { @@ -337,32 +351,32 @@ }, "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" } }, @@ -389,8 +403,8 @@ }, "MongoDB.Bson": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "xQx/qtC2nu9oGiyNqAwfiDpUMweLi0nID677cyKykpwmj5AVMrnd//UwmcmuX95178DeY6rf7cjmA613TQXPiA==", + "resolved": "2.23.1", + "contentHash": "IX9tycM35xK5hFwnU+rzharPJOtKYtON6E6Lp2nwOVjh40TUcS/HYToEEWZkLgqKNMCfYPK3Fz3QUCxzhkQRGA==", "dependencies": { "System.Memory": "4.5.5", "System.Runtime.CompilerServices.Unsafe": "5.0.0" @@ -433,6 +447,15 @@ "resolved": "4.7.11", "contentHash": "A7EpoOjWesV5BPx1cOiBndazZq1VGdagIs6oK8ttcRDl5adCMtHiTqnsD5yYaOrMxOQeCjHBf/w3nKzCmhGbgw==" }, + "prometheus-net": { + "type": "Transitive", + "resolved": "8.0.1", + "contentHash": "A9sOtQB2gEhujBxPKw+KcGScBiPvBmy4lYVM5OlETMj4xjVD5r/ixIg52HHg2P0lcImJTpfeWnD0/9tpQsRQTA==", + "dependencies": { + "Microsoft.Extensions.Http": "3.1.0", + "Microsoft.Extensions.ObjectPool": "7.0.0" + } + }, "Serilog": { "type": "Transitive", "resolved": "2.8.0", @@ -572,8 +595,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.Tracing": { "type": "Transitive", @@ -597,11 +623,11 @@ }, "System.IdentityModel.Tokens.Jwt": { "type": "Transitive", - "resolved": "7.1.2", - "contentHash": "Thhbe1peAmtSBFaV/ohtykXiZSOkx59Da44hvtWfIMFofDA3M3LaVyjstACf2rKGn4dEDR2cUpRAZ0Xs/zB+7Q==", + "resolved": "7.0.0", + "contentHash": "3OpN2iJf8lxpzVeFeeZSLtR3co6uKBs3VudS3PkkgdX5WF9fqqdhRMYf7WbkxqWQP/9RpoFbD3RimhfJe3hlQQ==", "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "7.1.2", - "Microsoft.IdentityModel.Tokens": "7.1.2" + "Microsoft.IdentityModel.JsonWebTokens": "7.0.0", + "Microsoft.IdentityModel.Tokens": "7.0.0" } }, "System.IO": { @@ -618,11 +644,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": { @@ -746,11 +772,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.Encoding.Extensions": { "type": "Transitive", @@ -765,20 +788,13 @@ }, "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": { "type": "Transitive", @@ -821,42 +837,42 @@ }, "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" } }, "YamlDotNet": { "type": "Transitive", - "resolved": "15.1.0", - "contentHash": "fXrqmKkzBtXeJiHEsZOPEWkonHweiwk/l0Hqhz4yMIZPh57kZy03Xbj2/e8HV1QIkTw7yeBe9bbphuE3YiI4vQ==" + "resolved": "13.3.1", + "contentHash": "Q2dqDsb0xAlr092grgHk8/vTXI2snIiYM5ND3IXkgJDFIdPnqDYwYnlk+gwzSeRByDLhiSzTog8uT7xFwH68Zg==" }, "monai.deploy.workflowmanager.common.configuration": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )" } }, "monai.deploy.workflowmanager.common.miscellaneous": { "type": "Project", "dependencies": { "Monai.Deploy.WorkflowManager.Common.Configuration": "[1.0.0, )", - "fo-dicom": "[5.1.2, )" + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.workflowmanager.taskmanager.api": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.3, )", + "Monai.Deploy.Messaging": "[2.0.4, )", "Mongo.Migration": "[3.1.4, )", - "MongoDB.Bson": "[2.25.0, )" + "MongoDB.Bson": "[2.23.1, )" } } } diff --git a/src/TaskManager/TaskManager/Monai.Deploy.WorkflowManager.TaskManager.csproj b/src/TaskManager/TaskManager/Monai.Deploy.WorkflowManager.TaskManager.csproj index 1735434e5..a097c708d 100644 --- a/src/TaskManager/TaskManager/Monai.Deploy.WorkflowManager.TaskManager.csproj +++ b/src/TaskManager/TaskManager/Monai.Deploy.WorkflowManager.TaskManager.csproj @@ -46,23 +46,23 @@ - - - - + + + + true - - + + true - + all runtime; build; native; contentfiles; analyzers; buildtransitive - - + + diff --git a/src/TaskManager/TaskManager/appsettings.Local.json b/src/TaskManager/TaskManager/appsettings.Local.json index fff763dd0..f58a147a7 100755 --- a/src/TaskManager/TaskManager/appsettings.Local.json +++ b/src/TaskManager/TaskManager/appsettings.Local.json @@ -1,6 +1,6 @@ { "WorkloadManagerDatabase": { - "ConnectionString": "mongodb://root:rootpassword@localhost:27017", + "ConnectionString": "mongodb://root:rootpassword@localhost:30017", "DatabaseName": "WorkloadManager" }, "WorkflowManager": { @@ -43,7 +43,7 @@ "endpoint": "localhost", "username": "admin", "password": "admin", - "port": "5672", + "port": "30072", "virtualHost": "monaideploy", "exchange": "monaideploy", "deadLetterExchange": "monaideploy-dead-letter", @@ -55,7 +55,7 @@ "endpoint": "localhost", "username": "admin", "password": "admin", - "port": "5672", + "port": "30072", "virtualHost": "monaideploy", "exchange": "monaideploy", "exportRequestQueue": "export_tasks" diff --git a/src/TaskManager/TaskManager/packages.lock.json b/src/TaskManager/TaskManager/packages.lock.json index 95de3d08c..f09d60c9c 100644 --- a/src/TaskManager/TaskManager/packages.lock.json +++ b/src/TaskManager/TaskManager/packages.lock.json @@ -4,87 +4,87 @@ "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.AspNetCore.Mvc.NewtonsoftJson": { "type": "Direct", - "requested": "[8.0.6, )", - "resolved": "8.0.6", - "contentHash": "AOoi7cmh2yTVHMNMRYEfAj26NCOur9pd70GSXaDNJvVtD7e/I9UddIkwnj7HAWKtUn2EUOzSKCpt/RZllYiO5w==", + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "322+FAPeMslfd320h8sASJSJ3h5s4dVr6W0xypr28Vz/cbMFjVCLHOou418cc2Xh0kXRzMy3irD3jBzSA+EiDA==", "dependencies": { - "Microsoft.AspNetCore.JsonPatch": "8.0.6", + "Microsoft.AspNetCore.JsonPatch": "8.0.14", "Newtonsoft.Json": "13.0.3", "Newtonsoft.Json.Bson": "1.0.2" } }, "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.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": { "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==" }, "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" } }, "StyleCop.Analyzers": { @@ -95,38 +95,38 @@ }, "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==" }, "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", @@ -148,26 +148,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" } }, "Fractions": { "type": "Transitive", - "resolved": "7.3.0", - "contentHash": "2bETFWLBc8b7Ut2SVi+bxhGVwiSpknHYGBh2PADyGWONLkTxT7bKyDRhF8ao+XUv90tq8Fl7GTPxSI5bacIRJw==" + "resolved": "7.2.1", + "contentHash": "1gVCo18/02ZZOJ+dcpVNMsUHF6cLmltMMskUWl2G1l+0OmTTvcwJZq5/JXIVpvOzPM3gDLombsloGMlTQNcv9g==" }, "IdentityModel": { "type": "Transitive", @@ -185,14 +185,14 @@ }, "KubernetesClient": { "type": "Transitive", - "resolved": "14.0.2", - "contentHash": "Ul7SLe34fLwOahsJKFf2InqcuRTCIBr3mW1PtabXlYeCJeP7yPiYyrGxilLn2+HIq1C5AoMTydhGcdNLbc/f9w==", + "resolved": "12.1.1", + "contentHash": "Xvc6Kr/W5YUxlMDzy0R80zy+Vd66brS7fSA4COGXu8KZACKPW7+KKS7kxZBLaFYGrUcktXOHpqNNuoukSGcK6A==", "dependencies": { - "Fractions": "7.3.0", + "Fractions": "7.2.1", "IdentityModel.OidcClient": "5.2.1", - "System.Diagnostics.DiagnosticSource": "7.0.0", - "System.IdentityModel.Tokens.Jwt": "7.1.2", - "YamlDotNet": "15.1.0" + "System.IdentityModel.Tokens.Jwt": "7.0.0", + "YamlDotNet": "13.3.1", + "prometheus-net": "8.0.1" } }, "LightInject": { @@ -205,10 +205,10 @@ }, "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.AspNetCore.Hosting.Abstractions": { @@ -249,8 +249,8 @@ }, "Microsoft.AspNetCore.JsonPatch": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "f23867xv+b5Cps3G2WDqjx3JjluLdR/TxfVI9sqk3d1ceQgOSD1WrqrQA66frdd5eQq+uqTGRReq1OQhQqodWQ==", + "resolved": "8.0.14", + "contentHash": "S0ZPiwLvRCYWYz7WTxaTZIyBEYOTPR+Rujdiwz4gUGauWpAhXu846I29xjOTBPX1d5HUcBNlJ46cgDDAev94Gg==", "dependencies": { "Microsoft.CSharp": "4.7.0", "Newtonsoft.Json": "13.0.3" @@ -258,8 +258,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", @@ -273,8 +273,8 @@ }, "Microsoft.Extensions.ApiDescription.Client": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "BIA0X1sx0WxCUD0wFjD9u9P0kMBCA9khN4PCISfjE0xThHW3VMRjXlopxbNLFSyiSySVYlnBpuXBHYHYs9eHJA==" + "resolved": "8.0.14", + "contentHash": "R7QsrA6RwSgAgjhV8zcGOEFWqvsAaKVk3WPwkXIoKaB91dFNp+IDwh9vH+WqTIJTg5DIKVocCokHXAjyTPD+2Q==" }, "Microsoft.Extensions.ApiDescription.Server": { "type": "Transitive", @@ -300,50 +300,49 @@ }, "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.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.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", @@ -355,46 +354,56 @@ }, "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": { + "type": "Transitive", + "resolved": "3.1.0", + "contentHash": "DLigdcV0nYaT6/ly0rnfP80BnXq8NNd/h8/SkfY39uio7Bd9LauVntp6RcRh1Kj23N+uf80GgL7Win6P3BCtoQ==", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0", + "Microsoft.Extensions.Logging": "3.1.0", + "Microsoft.Extensions.Options": "3.1.0" } }, "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" } }, @@ -416,6 +425,11 @@ "Microsoft.Extensions.Logging": "2.2.0" } }, + "Microsoft.Extensions.ObjectPool": { + "type": "Transitive", + "resolved": "7.0.0", + "contentHash": "udvKco0sAVgYGTBnHUb0tY9JQzJ/nPDiv/8PIyz69wl1AibeCDZOLVVI+6156dPfHmJH7ws5oUJRiW4ZmAvuuA==" + }, "Microsoft.Extensions.Options": { "type": "Transitive", "resolved": "8.0.2", @@ -465,20 +479,20 @@ }, "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": { @@ -501,8 +515,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", @@ -527,21 +541,21 @@ }, "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" } }, @@ -568,8 +582,8 @@ }, "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" @@ -577,25 +591,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", @@ -604,8 +618,8 @@ }, "MongoDB.Libmongocrypt": { "type": "Transitive", - "resolved": "1.8.2", - "contentHash": "z/8JCULSHM1+mzkau0ivIkU9kIn8JEFFSkmYTSaMaWMMHt96JjUtMKuXxeGNGSnHZ5290ZPKIlQfjoWFk2sKog==" + "resolved": "1.12.0", + "contentHash": "B1X51jrtNacKvxKoaqWeknYeJfQS5aWf6BmVLT5JZerz3AUXFzv8edPskJYqBc3kLy1J2PWzMqqsnyb9g8FtcA==" }, "Newtonsoft.Json": { "type": "Transitive", @@ -622,26 +636,35 @@ }, "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==" + }, + "prometheus-net": { + "type": "Transitive", + "resolved": "8.0.1", + "contentHash": "A9sOtQB2gEhujBxPKw+KcGScBiPvBmy4lYVM5OlETMj4xjVD5r/ixIg52HHg2P0lcImJTpfeWnD0/9tpQsRQTA==", + "dependencies": { + "Microsoft.Extensions.Http": "3.1.0", + "Microsoft.Extensions.ObjectPool": "7.0.0" + } }, "RabbitMQ.Client": { "type": "Transitive", @@ -738,24 +761,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", @@ -812,11 +835,6 @@ "System.Runtime": "4.3.0" } }, - "System.Diagnostics.DiagnosticSource": { - "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" - }, "System.Diagnostics.Tracing": { "type": "Transitive", "resolved": "4.1.0", @@ -860,11 +878,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": { @@ -950,8 +968,8 @@ }, "System.Runtime.CompilerServices.Unsafe": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==" + "resolved": "5.0.0", + "contentHash": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==" }, "System.Runtime.Extensions": { "type": "Transitive", @@ -1012,11 +1030,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.Encoding.Extensions": { "type": "Transitive", @@ -1031,20 +1046,13 @@ }, "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": { "type": "Transitive", @@ -1092,21 +1100,21 @@ }, "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" } }, "YamlDotNet": { "type": "Transitive", - "resolved": "15.1.0", - "contentHash": "fXrqmKkzBtXeJiHEsZOPEWkonHweiwk/l0Hqhz4yMIZPh57kZy03Xbj2/e8HV1QIkTw7yeBe9bbphuE3YiI4vQ==" + "resolved": "13.3.1", + "contentHash": "Q2dqDsb0xAlr092grgHk8/vTXI2snIiYM5ND3IXkgJDFIdPnqDYwYnlk+gwzSeRByDLhiSzTog8uT7xFwH68Zg==" }, "ZstdSharp.Port": { "type": "Transitive", @@ -1116,15 +1124,15 @@ "monai.deploy.workflowmanager.common.configuration": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )" } }, "monai.deploy.workflowmanager.common.miscellaneous": { "type": "Project", "dependencies": { "Monai.Deploy.WorkflowManager.Common.Configuration": "[1.0.0, )", - "fo-dicom": "[5.1.2, )" + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.workflowmanager.taskmanager.aideclinicalreview": { @@ -1138,16 +1146,16 @@ "monai.deploy.workflowmanager.taskmanager.api": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.3, )", + "Monai.Deploy.Messaging": "[2.0.4, )", "Mongo.Migration": "[3.1.4, )", - "MongoDB.Bson": "[2.25.0, )" + "MongoDB.Bson": "[2.23.1, )" } }, "monai.deploy.workflowmanager.taskmanager.argo": { "type": "Project", "dependencies": { - "KubernetesClient": "[14.0.2, )", - "Microsoft.Extensions.ApiDescription.Client": "[8.0.6, )", + "KubernetesClient": "[12.1.1, )", + "Microsoft.Extensions.ApiDescription.Client": "[8.0.14, )", "Monai.Deploy.WorkflowManager.Common.Configuration": "[1.0.0, )", "Monai.Deploy.WorkflowManager.Common.Miscellaneous": "[1.0.0, )", "Monai.Deploy.WorkflowManager.TaskManager.API": "[1.0.0, )" @@ -1157,7 +1165,7 @@ "type": "Project", "dependencies": { "Monai.Deploy.WorkflowManager.TaskManager.API": "[1.0.0, )", - "MongoDB.Driver": "[2.25.0, )" + "MongoDB.Driver": "[2.30.0, )" } }, "monai.deploy.workflowmanager.taskmanager.docker": { diff --git a/src/WorkflowManager/Common/Interfaces/IPaginatedApi.cs b/src/WorkflowManager/Common/Interfaces/IPaginatedApi.cs old mode 100644 new mode 100755 index 3889661f9..8dd7a7615 --- a/src/WorkflowManager/Common/Interfaces/IPaginatedApi.cs +++ b/src/WorkflowManager/Common/Interfaces/IPaginatedApi.cs @@ -14,11 +14,13 @@ * limitations under the License. */ +using MongoDB.Driver; + namespace Monai.Deploy.WorkflowManager.Common.Miscellaneous.Interfaces { public interface IPaginatedApi { - Task CountAsync(); + Task CountAsync(FilterDefinition? filter = null); Task> GetAllAsync(int? skip = null, int? limit = null); } diff --git a/src/WorkflowManager/Common/Interfaces/IPayloadService.cs b/src/WorkflowManager/Common/Interfaces/IPayloadService.cs old mode 100644 new mode 100755 index 9702defb6..66af9df9b --- a/src/WorkflowManager/Common/Interfaces/IPayloadService.cs +++ b/src/WorkflowManager/Common/Interfaces/IPayloadService.cs @@ -16,6 +16,7 @@ using Monai.Deploy.Messaging.Events; using Monai.Deploy.WorkflowManager.Common.Contracts.Models; +using MongoDB.Driver; namespace Monai.Deploy.WorkflowManager.Common.Miscellaneous.Interfaces { @@ -38,8 +39,9 @@ public interface IPayloadService : IPaginatedApi /// Task> GetAllAsync(int? skip = null, int? limit = null, - string? patientId = "", - string? patientName = ""); + string? patientId = null, + string? patientName = null, + string? accessionId = null); new Task> GetAllAsync(int? skip = null, int? limit = null); /// @@ -63,5 +65,7 @@ Task> GetAllAsync(int? skip = null, /// updated payload. /// true if the update is successful, false otherwise. Task UpdateAsyncWorkflowIds(Payload payload); + + Task CountAsync(FilterDefinition filter); } } diff --git a/src/WorkflowManager/Common/Services/PayloadService.cs b/src/WorkflowManager/Common/Services/PayloadService.cs old mode 100644 new mode 100755 index ddb2cc2c8..e385a00a6 --- a/src/WorkflowManager/Common/Services/PayloadService.cs +++ b/src/WorkflowManager/Common/Services/PayloadService.cs @@ -26,6 +26,7 @@ using Monai.Deploy.WorkflowManager.Common.Storage.Services; using Microsoft.Extensions.Options; using Monai.Deploy.WorkflowManager.Common.Configuration; +using MongoDB.Driver; namespace Monai.Deploy.WorkflowManager.Common.Miscellaneous.Services { @@ -97,7 +98,8 @@ public PayloadService( PatientDetails = patientDetails, PayloadDeleted = PayloadDeleted.No, Expires = await GetExpiry(DateTime.UtcNow, eventPayload.WorkflowInstanceId), - SeriesInstanceUid = _dicomService.GetSeriesInstanceUID(dict) + SeriesInstanceUid = _dicomService.GetSeriesInstanceUID(dict), + AccessionId = _dicomService.GetAccessionID(dict) ?? string.Empty }; if (await _payloadRepository.CreateAsync(payload)) @@ -148,10 +150,11 @@ public async Task GetByIdAsync(string payloadId) public async Task> GetAllAsync(int? skip = null, int? limit = null, - string? patientId = "", - string? patientName = "") + string? patientId = null, + string? patientName = null, + string? accessionId = null) => await CreatePayloadsDto( - await _payloadRepository.GetAllAsync(skip, limit, patientId ?? string.Empty, patientName ?? string.Empty) + await _payloadRepository.GetAllAsync(skip, limit, patientId, patientName, accessionId) ); public async Task> GetAllAsync(int? skip = null, int? limit = null) @@ -192,7 +195,13 @@ private async Task> CreatePayloadsDto(IList payloads) return dtos; } - public async Task CountAsync() => await _payloadRepository.CountAsync(); + public async Task CountAsync(FilterDefinition filter) + => await _payloadRepository.CountAsync(filter); + + + // this has to be here because of the base, but dont use it ! + public Task CountAsync(FilterDefinition? filter) + => throw new NotImplementedException(); public async Task DeletePayloadFromStorageAsync(string payloadId) { diff --git a/src/WorkflowManager/Common/Services/WorkflowInstanceService.cs b/src/WorkflowManager/Common/Services/WorkflowInstanceService.cs old mode 100644 new mode 100755 index bf9228d26..7259a4ef8 --- a/src/WorkflowManager/Common/Services/WorkflowInstanceService.cs +++ b/src/WorkflowManager/Common/Services/WorkflowInstanceService.cs @@ -14,7 +14,6 @@ * limitations under the License. */ -using Ardalis.GuardClauses; using Microsoft.Extensions.Logging; using Monai.Deploy.Messaging.Events; using Monai.Deploy.WorkflowManager.Common.Miscellaneous.Exceptions; @@ -22,6 +21,7 @@ using Monai.Deploy.WorkflowManager.Common.Contracts.Models; using Monai.Deploy.WorkflowManager.Common.Database.Interfaces; using Monai.Deploy.WorkflowManager.Common.Logging; +using MongoDB.Driver; namespace Monai.Deploy.WorkflowManager.Common.Miscellaneous.Services { @@ -87,7 +87,11 @@ public async Task UpdateExportCompleteMetadataAsync(string workflowInstanceId, s await _workflowInstanceRepository.UpdateExportCompleteMetadataAsync(workflowInstanceId, executionId, resultMetadata); } - public async Task CountAsync() => await _workflowInstanceRepository.CountAsync(); + public async Task CountAsync(FilterDefinition? filter) + { + filter = filter ?? Builders.Filter.Empty; + return await _workflowInstanceRepository.CountAsync(filter); + } public async Task> GetAllAsync(int? skip = null, int? limit = null, Status? status = null, string? payloadId = null) => await _workflowInstanceRepository.GetAllAsync(skip, limit, status, payloadId); diff --git a/src/WorkflowManager/Common/Services/WorkflowService.cs b/src/WorkflowManager/Common/Services/WorkflowService.cs old mode 100644 new mode 100755 index 2788dc884..7e970a041 --- a/src/WorkflowManager/Common/Services/WorkflowService.cs +++ b/src/WorkflowManager/Common/Services/WorkflowService.cs @@ -19,6 +19,7 @@ using Monai.Deploy.WorkflowManager.Common.Contracts.Models; using Monai.Deploy.WorkflowManager.Common.Database.Interfaces; using Monai.Deploy.WorkflowManager.Common.Logging; +using MongoDB.Driver; namespace Monai.Deploy.WorkflowManager.Common.Miscellaneous.Services { @@ -83,7 +84,8 @@ public Task DeleteWorkflowAsync(WorkflowRevision workflow) return result; } - public async Task CountAsync() => await _workflowRepository.CountAsync(); + public async Task CountAsync(FilterDefinition? filter) + => await _workflowRepository.CountAsync(filter ?? Builders.Filter.Empty); public async Task> GetAllAsync(int? skip = null, int? limit = null) => await _workflowRepository.GetAllAsync(skip, limit); diff --git a/src/WorkflowManager/Contracts/Migrations/M001_Payload_addVerion.cs b/src/WorkflowManager/Contracts/Migrations/M001_Payload_addVerion.cs old mode 100644 new mode 100755 diff --git a/src/WorkflowManager/Contracts/Migrations/M002_Payload_addPayloadDeleted.cs b/src/WorkflowManager/Contracts/Migrations/M002_Payload_addPayloadDeleted.cs old mode 100644 new mode 100755 diff --git a/src/WorkflowManager/Contracts/Migrations/M002_WorkflowRevision_addVerion.cs b/src/WorkflowManager/Contracts/Migrations/M002_WorkflowRevision_addVerion.cs old mode 100644 new mode 100755 index c621d60d2..558442bf4 --- a/src/WorkflowManager/Contracts/Migrations/M002_WorkflowRevision_addVerion.cs +++ b/src/WorkflowManager/Contracts/Migrations/M002_WorkflowRevision_addVerion.cs @@ -21,7 +21,7 @@ namespace Monai.Deploy.WorkflowManager.Common.Contracts.Migrations { public class M002_WorkflowRevision_addVerion : DocumentMigration { - public M002_WorkflowRevision_addVerion() : base("1.0.0") { } + public M002_WorkflowRevision_addVerion() : base("1.0.2") { } public override void Up(BsonDocument document) { diff --git a/src/WorkflowManager/Contracts/Migrations/M003_Payload_addDataTrigger.cs b/src/WorkflowManager/Contracts/Migrations/M003_Payload_addDataTrigger.cs old mode 100644 new mode 100755 diff --git a/src/WorkflowManager/Contracts/Migrations/M003_WorkflowRevision_addDataRetension.cs b/src/WorkflowManager/Contracts/Migrations/M003_WorkflowRevision_addDataRetension.cs old mode 100644 new mode 100755 index d652ba096..f04be721e --- a/src/WorkflowManager/Contracts/Migrations/M003_WorkflowRevision_addDataRetension.cs +++ b/src/WorkflowManager/Contracts/Migrations/M003_WorkflowRevision_addDataRetension.cs @@ -22,12 +22,19 @@ namespace Monai.Deploy.WorkflowManager.Common.Contracts.Migrations { public class M003_WorkflowRevision_addDataRetension : DocumentMigration { - public M003_WorkflowRevision_addDataRetension() : base("1.0.1") { } + public M003_WorkflowRevision_addDataRetension() : base("1.0.3") { } public override void Up(BsonDocument document) { - var workflow = document["Workflow"].AsBsonDocument; - workflow.Add("DataRetentionDays", -1, true); + try + { + var workflow = document["Workflow"].AsBsonDocument; + workflow.Add("DataRetentionDays", -1, true); + } + catch + {// can ignore we dont want failures stopping startup ! + } + } public override void Down(BsonDocument document) diff --git a/src/WorkflowManager/Contracts/Migrations/M004_Payload_expires.cs b/src/WorkflowManager/Contracts/Migrations/M004_Payload_expires.cs old mode 100644 new mode 100755 diff --git a/src/WorkflowManager/Contracts/Migrations/M004_WorkflowRevision_addConditions.cs b/src/WorkflowManager/Contracts/Migrations/M004_WorkflowRevision_addConditions.cs old mode 100644 new mode 100755 index 03de8644e..1073b00f7 --- a/src/WorkflowManager/Contracts/Migrations/M004_WorkflowRevision_addConditions.cs +++ b/src/WorkflowManager/Contracts/Migrations/M004_WorkflowRevision_addConditions.cs @@ -22,12 +22,19 @@ namespace Monai.Deploy.WorkflowManager.Common.Contracts.Migrations { public class M004_WorkflowRevision_addConditions : DocumentMigration { - public M004_WorkflowRevision_addConditions() : base("1.0.2") { } + public M004_WorkflowRevision_addConditions() : base("1.0.4") { } public override void Up(BsonDocument document) { - var workflow = document["Workflow"].AsBsonDocument; - workflow.Add("Conditions", new BsonArray { }); + try + { + var workflow = document["Workflow"].AsBsonDocument; + workflow.Add("Predicate", new BsonArray { }); + } + catch + { // can ignore we dont want failures stopping startup ! + } + } public override void Down(BsonDocument document) @@ -35,7 +42,7 @@ public override void Down(BsonDocument document) try { var workflow = document["Workflow"].AsBsonDocument; - workflow.Remove("Conditions"); + workflow.Remove("Predicate"); } catch { // can ignore we dont want failures stopping startup ! diff --git a/src/WorkflowManager/Contracts/Migrations/M005_Payload_seriesUid.cs b/src/WorkflowManager/Contracts/Migrations/M005_Payload_seriesUid.cs old mode 100644 new mode 100755 index 411ccfad5..47e87207c --- a/src/WorkflowManager/Contracts/Migrations/M005_Payload_seriesUid.cs +++ b/src/WorkflowManager/Contracts/Migrations/M005_Payload_seriesUid.cs @@ -25,7 +25,13 @@ public M005_Payload_seriesUid() : base("1.0.5") { } public override void Up(BsonDocument document) { - document.Add("SeriesInstanceUid", BsonNull.Create(null).ToJson(), true); + try + { + document.Add("SeriesInstanceUid", new BsonString(""), true); + } + catch + { + } } public override void Down(BsonDocument document) diff --git a/src/WorkflowManager/Contracts/Migrations/M006_Payload_triggeredWorkflows.cs b/src/WorkflowManager/Contracts/Migrations/M006_Payload_triggeredWorkflows.cs old mode 100644 new mode 100755 index c17df5075..95838bd48 --- a/src/WorkflowManager/Contracts/Migrations/M006_Payload_triggeredWorkflows.cs +++ b/src/WorkflowManager/Contracts/Migrations/M006_Payload_triggeredWorkflows.cs @@ -25,7 +25,13 @@ public M006_Payload_triggeredWorkflows() : base("1.0.6") { } public override void Up(BsonDocument document) { - document.Add("TriggeredWorkflowNames", BsonNull.Create(null).ToJson(), true); + try + { + document.Add("TriggeredWorkflowNames", new BsonArray()); + } + catch + { + } } public override void Down(BsonDocument document) diff --git a/src/WorkflowManager/Contracts/Migrations/M001_WorkflowRevision_addVerion.cs b/src/WorkflowManager/Contracts/Migrations/M007_Payload_addAccessionId.cs old mode 100644 new mode 100755 similarity index 76% rename from src/WorkflowManager/Contracts/Migrations/M001_WorkflowRevision_addVerion.cs rename to src/WorkflowManager/Contracts/Migrations/M007_Payload_addAccessionId.cs index 45c1a7449..57d239fd7 --- a/src/WorkflowManager/Contracts/Migrations/M001_WorkflowRevision_addVerion.cs +++ b/src/WorkflowManager/Contracts/Migrations/M007_Payload_addAccessionId.cs @@ -19,19 +19,26 @@ namespace Monai.Deploy.WorkflowManager.Common.Contracts.Migrations { - public class M001_WorkflowRevision_addVerion : DocumentMigration + public class M007_Payload_addAccessionId : DocumentMigration { - public M001_WorkflowRevision_addVerion() : base("1.0.0") { } + public M007_Payload_addAccessionId() : base("1.0.7") { } public override void Up(BsonDocument document) { - // empty, but this will make all objects re-saved with a version + try + { + document.Add("AccessionId", new BsonString(""), true); + } + catch + { + } } + public override void Down(BsonDocument document) { try { - document.Remove("Version"); + document.Remove("AccessionId"); } catch { // can ignore we dont want failures stopping startup ! diff --git a/src/WorkflowManager/Contracts/Models/Payload.cs b/src/WorkflowManager/Contracts/Models/Payload.cs index fb78bdcd9..564d90396 100755 --- a/src/WorkflowManager/Contracts/Models/Payload.cs +++ b/src/WorkflowManager/Contracts/Models/Payload.cs @@ -27,11 +27,11 @@ namespace Monai.Deploy.WorkflowManager.Common.Contracts.Models { - [CollectionLocation("Payloads"), RuntimeVersion("1.0.6")] + [CollectionLocation("Payloads"), RuntimeVersion("1.0.7")] public class Payload : IDocument { [JsonConverter(typeof(DocumentVersionConvert)), BsonSerializer(typeof(DocumentVersionConverBson))] - public DocumentVersion Version { get; set; } = new DocumentVersion(1, 0, 5); + public DocumentVersion Version { get; set; } = new DocumentVersion(1, 0, 7); [JsonProperty(PropertyName = "id")] public string Id { get; set; } = string.Empty; @@ -39,6 +39,9 @@ public class Payload : IDocument [JsonProperty(PropertyName = "payload_id")] public string PayloadId { get; set; } = string.Empty; + [JsonProperty(PropertyName = "accession_id")] + public string AccessionId { get; set; } = string.Empty; + [JsonProperty(PropertyName = "workflows")] public IEnumerable Workflows { get; set; } = []; diff --git a/src/WorkflowManager/Contracts/Models/PayloadDto.cs b/src/WorkflowManager/Contracts/Models/PayloadDto.cs old mode 100644 new mode 100755 index 6fa47934e..473b570b4 --- a/src/WorkflowManager/Contracts/Models/PayloadDto.cs +++ b/src/WorkflowManager/Contracts/Models/PayloadDto.cs @@ -38,6 +38,7 @@ public PayloadDto(Payload payload) PayloadDeleted = payload.PayloadDeleted; SeriesInstanceUid = payload.SeriesInstanceUid; TriggeredWorkflowNames = payload.TriggeredWorkflowNames; + AccessionId = payload.AccessionId; } [JsonProperty(PropertyName = "payload_status")] diff --git a/src/WorkflowManager/Contracts/Models/WorkflowRevision.cs b/src/WorkflowManager/Contracts/Models/WorkflowRevision.cs index cd43c9c7d..8cd2076e8 100755 --- a/src/WorkflowManager/Contracts/Models/WorkflowRevision.cs +++ b/src/WorkflowManager/Contracts/Models/WorkflowRevision.cs @@ -23,7 +23,7 @@ namespace Monai.Deploy.WorkflowManager.Common.Contracts.Models { - [CollectionLocation("Workflows"), RuntimeVersion("1.0.2")] + [CollectionLocation("Workflows"), RuntimeVersion("1.0.4")] public class WorkflowRevision : ISoftDeleteable, IDocument { [BsonId] diff --git a/src/WorkflowManager/Contracts/Monai.Deploy.WorkflowManager.Contracts.csproj b/src/WorkflowManager/Contracts/Monai.Deploy.WorkflowManager.Contracts.csproj index f594da1e2..6b5e52071 100644 --- a/src/WorkflowManager/Contracts/Monai.Deploy.WorkflowManager.Contracts.csproj +++ b/src/WorkflowManager/Contracts/Monai.Deploy.WorkflowManager.Contracts.csproj @@ -31,8 +31,8 @@ - + - + \ No newline at end of file diff --git a/src/WorkflowManager/Database/Interfaces/IPayloadRepository.cs b/src/WorkflowManager/Database/Interfaces/IPayloadRepository.cs old mode 100644 new mode 100755 index 9861ccf19..afb169a12 --- a/src/WorkflowManager/Database/Interfaces/IPayloadRepository.cs +++ b/src/WorkflowManager/Database/Interfaces/IPayloadRepository.cs @@ -18,6 +18,7 @@ using System.Collections.Generic; using System.Threading.Tasks; using Monai.Deploy.WorkflowManager.Common.Contracts.Models; +using MongoDB.Driver; namespace Monai.Deploy.WorkflowManager.Common.Database.Interfaces { @@ -32,7 +33,7 @@ public interface IPayloadRepository /// /// Retrieves a list of payloads in the database. /// - Task> GetAllAsync(int? skip = null, int? limit = null, string patientId = "", string patientName = ""); + Task> GetAllAsync(int? skip = null, int? limit = null, string? patientId = null, string? patientName = null, string? accessionId = null); /// /// Retrieves a payload by id in the database. @@ -44,7 +45,7 @@ public interface IPayloadRepository /// Gets count of objects /// /// Count of objects. - Task CountAsync(); + Task CountAsync(FilterDefinition filter); /// /// Updates a payload in the database. diff --git a/src/WorkflowManager/Database/Interfaces/IWorkflowInstanceRepository.cs b/src/WorkflowManager/Database/Interfaces/IWorkflowInstanceRepository.cs old mode 100644 new mode 100755 index a6ffbcf4b..ad4cf2f91 --- a/src/WorkflowManager/Database/Interfaces/IWorkflowInstanceRepository.cs +++ b/src/WorkflowManager/Database/Interfaces/IWorkflowInstanceRepository.cs @@ -18,6 +18,7 @@ using System.Threading.Tasks; using Monai.Deploy.Messaging.Events; using Monai.Deploy.WorkflowManager.Common.Contracts.Models; +using MongoDB.Driver; namespace Monai.Deploy.WorkflowManager.Common.Database.Interfaces { @@ -44,7 +45,7 @@ public interface IWorkflowInstanceRepository /// Gets count of Workflow Instances. /// /// - Task CountAsync(); + Task CountAsync(FilterDefinition filter); /// /// Gets the count of workflow instances with a filter. diff --git a/src/WorkflowManager/Database/Interfaces/IWorkflowRepository.cs b/src/WorkflowManager/Database/Interfaces/IWorkflowRepository.cs old mode 100644 new mode 100755 index c821753be..0d7f5791c --- a/src/WorkflowManager/Database/Interfaces/IWorkflowRepository.cs +++ b/src/WorkflowManager/Database/Interfaces/IWorkflowRepository.cs @@ -18,6 +18,7 @@ using System.Collections.Generic; using System.Threading.Tasks; using Monai.Deploy.WorkflowManager.Common.Contracts.Models; +using MongoDB.Driver; namespace Monai.Deploy.WorkflowManager.Common.Database.Interfaces { @@ -97,7 +98,7 @@ public interface IWorkflowRepository /// Task SoftDeleteWorkflow(WorkflowRevision workflow); - Task CountAsync(); + Task CountAsync(FilterDefinition filter); Task> GetAllAsync(int? skip, int? limit); diff --git a/src/WorkflowManager/Database/Monai.Deploy.WorkflowManager.Database.csproj b/src/WorkflowManager/Database/Monai.Deploy.WorkflowManager.Database.csproj index 9e3a434a2..80a30e40d 100755 --- a/src/WorkflowManager/Database/Monai.Deploy.WorkflowManager.Database.csproj +++ b/src/WorkflowManager/Database/Monai.Deploy.WorkflowManager.Database.csproj @@ -36,7 +36,7 @@ - + diff --git a/src/WorkflowManager/Database/Repositories/PayloadRepository.cs b/src/WorkflowManager/Database/Repositories/PayloadRepository.cs old mode 100644 new mode 100755 index f050d928d..5da47d510 --- a/src/WorkflowManager/Database/Repositories/PayloadRepository.cs +++ b/src/WorkflowManager/Database/Repositories/PayloadRepository.cs @@ -71,7 +71,10 @@ private async Task EnsureIndex() } } - public Task CountAsync() => CountAsync(_payloadCollection, null); + public Task CountAsync(FilterDefinition filter) + { + return CountAsync(_payloadCollection, filter); + } public async Task CreateAsync(Payload payload) { @@ -91,18 +94,19 @@ public async Task CreateAsync(Payload payload) } } - public async Task> GetAllAsync(int? skip = null, int? limit = null, string? patientId = "", string? patientName = "") + public async Task> GetAllAsync(int? skip = null, int? limit = null, string? patientId = null, string? patientName = null, string? accessionId = null) { var builder = Builders.Filter; var filter = builder.Empty; - if (!string.IsNullOrEmpty(patientId)) - { - filter &= builder.Regex(p => p.PatientDetails.PatientId, new BsonRegularExpression($"/{patientId}/i")); - } - if (!string.IsNullOrEmpty(patientName)) - { - filter &= builder.Regex(p => p.PatientDetails.PatientName, new BsonRegularExpression($"/{patientName}/i")); - } + if (!string.IsNullOrEmpty(patientId)) filter + &= builder.Regex(p => p.PatientDetails.PatientId, new BsonRegularExpression($"/{patientId}/i")); + + if (!string.IsNullOrEmpty(patientName)) filter + &= builder.Regex(p => p.PatientDetails.PatientName, new BsonRegularExpression($"/{patientName}/i")); + + if (!string.IsNullOrWhiteSpace(accessionId)) filter + &= builder.Regex(p => p.AccessionId, new BsonRegularExpression($"/{accessionId}/i")); + return await GetAllAsync(_payloadCollection, filter, diff --git a/src/WorkflowManager/Database/Repositories/TaskExecutionStatsRepository.cs b/src/WorkflowManager/Database/Repositories/TaskExecutionStatsRepository.cs old mode 100644 new mode 100755 index 4e666e1de..4f6689aca --- a/src/WorkflowManager/Database/Repositories/TaskExecutionStatsRepository.cs +++ b/src/WorkflowManager/Database/Repositories/TaskExecutionStatsRepository.cs @@ -253,9 +253,9 @@ public static Expression> GetExecutedTasksFilter() { var dispatched = TaskExecutionStatus.Dispatched.ToString(); var created = TaskExecutionStatus.Created.ToString(); - var accepted = TaskExecutionStatus.Accepted.ToString(); + //var accepted = TaskExecutionStatus.Accepted.ToString(); - return t => t.Status != dispatched && t.Status != created && t.Status != accepted; + return t => t.Status != dispatched && t.Status != created;//&& t.Status != accepted; } diff --git a/src/WorkflowManager/Database/Repositories/WorkflowInstanceRepository.cs b/src/WorkflowManager/Database/Repositories/WorkflowInstanceRepository.cs index d3d80d10e..9b556dd73 100755 --- a/src/WorkflowManager/Database/Repositories/WorkflowInstanceRepository.cs +++ b/src/WorkflowManager/Database/Repositories/WorkflowInstanceRepository.cs @@ -313,7 +313,10 @@ public async Task GetByWorkflowInstanceIdAsync(string workflow return workflow; } - public async Task CountAsync() => await CountAsync(_workflowInstanceCollection, null); + public async Task CountAsync(FilterDefinition filter) + { + return await CountAsync(_workflowInstanceCollection, filter); + } public async Task FilteredCountAsync(Status? status = null, string? payloadId = null) { diff --git a/src/WorkflowManager/Database/Repositories/WorkflowRepository.cs b/src/WorkflowManager/Database/Repositories/WorkflowRepository.cs index 8ac32ec05..0fe49140f 100755 --- a/src/WorkflowManager/Database/Repositories/WorkflowRepository.cs +++ b/src/WorkflowManager/Database/Repositories/WorkflowRepository.cs @@ -272,7 +272,12 @@ await _workflowCollection.UpdateManyAsync( return deletedTimeStamp; } - public async Task CountAsync() => await _workflowCollection.CountDocumentsAsync(x => x.Deleted == null); + public async Task CountAsync(FilterDefinition filter) + { + var builder = Builders.Filter; + filter &= builder.Eq(p => p.Deleted, null); + return await _workflowCollection.CountDocumentsAsync(filter); + } public async Task> GetAllAsync(int? skip = null, int? limit = null) => await GetAllAsync(_workflowCollection, diff --git a/src/WorkflowManager/Database/packages.lock.json b/src/WorkflowManager/Database/packages.lock.json index 8b3c32227..ddb20bd42 100644 --- a/src/WorkflowManager/Database/packages.lock.json +++ b/src/WorkflowManager/Database/packages.lock.json @@ -26,20 +26,20 @@ }, "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" } }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", @@ -140,34 +140,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", @@ -179,14 +178,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": { @@ -202,10 +201,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": { @@ -281,19 +280,19 @@ }, "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" } }, "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" @@ -301,14 +300,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", @@ -317,8 +316,8 @@ }, "MongoDB.Libmongocrypt": { "type": "Transitive", - "resolved": "1.8.2", - "contentHash": "z/8JCULSHM1+mzkau0ivIkU9kIn8JEFFSkmYTSaMaWMMHt96JjUtMKuXxeGNGSnHZ5290ZPKIlQfjoWFk2sKog==" + "resolved": "1.12.0", + "contentHash": "B1X51jrtNacKvxKoaqWeknYeJfQS5aWf6BmVLT5JZerz3AUXFzv8edPskJYqBc3kLy1J2PWzMqqsnyb9g8FtcA==" }, "Newtonsoft.Json": { "type": "Transitive", @@ -469,11 +468,6 @@ "System.Runtime": "4.3.0" } }, - "System.Diagnostics.DiagnosticSource": { - "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" - }, "System.Diagnostics.Tracing": { "type": "Transitive", "resolved": "4.1.0", @@ -508,11 +502,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": { @@ -700,15 +694,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": { @@ -719,9 +713,9 @@ "monai.deploy.workflowmanager.contracts": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.3, )", + "Monai.Deploy.Messaging": "[2.0.4, )", "Mongo.Migration": "[3.1.4, )", - "MongoDB.Bson": "[2.25.0, )" + "MongoDB.Bson": "[2.23.1, )" } }, "monai.deploy.workflowmanager.logging": { diff --git a/src/WorkflowManager/Logging/packages.lock.json b/src/WorkflowManager/Logging/packages.lock.json index 10900f347..4ba2806c8 100644 --- a/src/WorkflowManager/Logging/packages.lock.json +++ b/src/WorkflowManager/Logging/packages.lock.json @@ -4,8 +4,8 @@ "net8.0": { "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.5.0", - "contentHash": "9ajMCMD3gIWUsVb//ftJFsFm+TDvP3y05dVC1S9ANLP4Bo7V2xbCeQbTVomXR0mTYkX4mX6Lp3SPtdcKag4rZg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "DnsClient": { "type": "Transitive", @@ -90,34 +90,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", @@ -129,14 +128,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": { @@ -152,10 +151,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": { @@ -222,13 +221,13 @@ }, "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" } }, "Mongo.Migration": { @@ -254,8 +253,8 @@ }, "MongoDB.Bson": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "xQx/qtC2nu9oGiyNqAwfiDpUMweLi0nID677cyKykpwmj5AVMrnd//UwmcmuX95178DeY6rf7cjmA613TQXPiA==", + "resolved": "2.23.1", + "contentHash": "IX9tycM35xK5hFwnU+rzharPJOtKYtON6E6Lp2nwOVjh40TUcS/HYToEEWZkLgqKNMCfYPK3Fz3QUCxzhkQRGA==", "dependencies": { "System.Memory": "4.5.5", "System.Runtime.CompilerServices.Unsafe": "5.0.0" @@ -435,11 +434,6 @@ "System.Runtime": "4.3.0" } }, - "System.Diagnostics.DiagnosticSource": { - "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" - }, "System.Diagnostics.Tracing": { "type": "Transitive", "resolved": "4.1.0", @@ -474,11 +468,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": { @@ -661,23 +655,23 @@ }, "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.workflowmanager.contracts": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.3, )", + "Monai.Deploy.Messaging": "[2.0.4, )", "Mongo.Migration": "[3.1.4, )", - "MongoDB.Bson": "[2.25.0, )" + "MongoDB.Bson": "[2.23.1, )" } } } diff --git a/src/WorkflowManager/PayloadListener/packages.lock.json b/src/WorkflowManager/PayloadListener/packages.lock.json index a37fdbb67..c5e2231b6 100644 --- a/src/WorkflowManager/PayloadListener/packages.lock.json +++ b/src/WorkflowManager/PayloadListener/packages.lock.json @@ -4,26 +4,26 @@ "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==" }, "DnsClient": { "type": "Transitive", @@ -35,19 +35,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" } }, @@ -97,8 +97,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", @@ -140,34 +140,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", @@ -179,14 +178,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": { @@ -203,10 +202,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": { @@ -282,32 +281,32 @@ }, "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" } }, @@ -334,8 +333,8 @@ }, "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" @@ -343,25 +342,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", @@ -370,8 +369,8 @@ }, "MongoDB.Libmongocrypt": { "type": "Transitive", - "resolved": "1.8.2", - "contentHash": "z/8JCULSHM1+mzkau0ivIkU9kIn8JEFFSkmYTSaMaWMMHt96JjUtMKuXxeGNGSnHZ5290ZPKIlQfjoWFk2sKog==" + "resolved": "1.12.0", + "contentHash": "B1X51jrtNacKvxKoaqWeknYeJfQS5aWf6BmVLT5JZerz3AUXFzv8edPskJYqBc3kLy1J2PWzMqqsnyb9g8FtcA==" }, "Newtonsoft.Json": { "type": "Transitive", @@ -524,8 +523,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.Tracing": { "type": "Transitive", @@ -561,11 +563,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": { @@ -703,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.Encoding.Extensions": { "type": "Transitive", @@ -722,20 +721,13 @@ }, "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": { "type": "Transitive", @@ -778,15 +770,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": { @@ -806,15 +798,15 @@ "monai.deploy.workflowmanager.common.configuration": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )" } }, "monai.deploy.workflowmanager.common.miscellaneous": { "type": "Project", "dependencies": { "Monai.Deploy.WorkflowManager.Common.Configuration": "[1.0.0, )", - "fo-dicom": "[5.1.2, )" + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.workflowmanager.conditionsresolver": { @@ -829,9 +821,9 @@ "monai.deploy.workflowmanager.contracts": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.3, )", + "Monai.Deploy.Messaging": "[2.0.4, )", "Mongo.Migration": "[3.1.4, )", - "MongoDB.Bson": "[2.25.0, )" + "MongoDB.Bson": "[2.23.1, )" } }, "monai.deploy.workflowmanager.database": { @@ -840,7 +832,7 @@ "Monai.Deploy.WorkflowManager.Contracts": "[1.0.0, )", "Monai.Deploy.WorkflowManager.Logging": "[1.0.0, )", "Mongo.Migration": "[3.1.4, )", - "MongoDB.Driver": "[2.25.0, )" + "MongoDB.Driver": "[2.30.0, )" } }, "monai.deploy.workflowmanager.logging": { @@ -852,7 +844,7 @@ "monai.deploy.workflowmanager.storage": { "type": "Project", "dependencies": { - "Monai.Deploy.Storage": "[1.0.1, )", + "Monai.Deploy.Storage": "[1.0.2, )", "Monai.Deploy.WorkflowManager.Contracts": "[1.0.0, )", "Monai.Deploy.WorkflowManager.Logging": "[1.0.0, )" } @@ -860,7 +852,7 @@ "monai.deploy.workloadmanager.workflowexecuter": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.3, )", + "Monai.Deploy.Messaging": "[2.0.4, )", "Monai.Deploy.WorkflowManager.Common": "[1.0.0, )", "Monai.Deploy.WorkflowManager.Common.Configuration": "[1.0.0, )", "Monai.Deploy.WorkflowManager.Common.Miscellaneous": "[1.0.0, )", diff --git a/src/WorkflowManager/Services/Monai.Deploy.WorkflowManager.Services.csproj b/src/WorkflowManager/Services/Monai.Deploy.WorkflowManager.Services.csproj index da1e03606..52e030055 100644 --- a/src/WorkflowManager/Services/Monai.Deploy.WorkflowManager.Services.csproj +++ b/src/WorkflowManager/Services/Monai.Deploy.WorkflowManager.Services.csproj @@ -39,6 +39,6 @@ ..\..\.sonarlint\project-monai_monai-deploy-workflow-managercsharp.ruleset - + \ No newline at end of file diff --git a/src/WorkflowManager/Services/packages.lock.json b/src/WorkflowManager/Services/packages.lock.json index 5916e82c0..3a44e5024 100644 --- a/src/WorkflowManager/Services/packages.lock.json +++ b/src/WorkflowManager/Services/packages.lock.json @@ -4,34 +4,34 @@ "net8.0": { "Microsoft.Extensions.Http": { "type": "Direct", - "requested": "[8.0.0, )", - "resolved": "8.0.0", - "contentHash": "cWz4caHwvx0emoYe7NkHPxII/KkTI8R/LC9qdqJqnKv2poTJ4e2qqPGQqvRoQ5kaSA4FU5IV3qFAuLuOhoqULQ==", + "requested": "[8.0.1, )", + "resolved": "8.0.1", + "contentHash": "kDYeKJUzh0qeg/AI+nSr3ffthmXYQTEb0nS9qRC7YhSbbuN4M4NPbaB77AJwtkTnCV9XZ7qYj3dkZaNcyl73EA==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Diagnostics": "8.0.0", - "Microsoft.Extensions.Logging": "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.Diagnostics": "8.0.1", + "Microsoft.Extensions.Logging": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.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)" } }, "DnsClient": { @@ -113,52 +113,51 @@ }, "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.Diagnostics": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "3PZp/YSkIXrF7QK7PfC1bkyRYwqOHpWFad8Qx+4wkuumAeXo1NHaxpS9LboNA9OvNSAu+QOVlXbMyoY+pHSqcw==", + "resolved": "8.0.1", + "contentHash": "doVPCUUCY7c6LhBsEfiy3W1bvS7Mi6LkfQMS8nlC22jZWNxBv8VO8bdfeyvpYFst6Kxqk7HBC6lytmEoBssvSQ==", "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0" } }, "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", @@ -170,32 +169,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.Logging.Configuration": { @@ -272,32 +271,32 @@ }, "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" } }, @@ -324,8 +323,8 @@ }, "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" @@ -333,25 +332,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", @@ -360,8 +359,8 @@ }, "MongoDB.Libmongocrypt": { "type": "Transitive", - "resolved": "1.8.2", - "contentHash": "z/8JCULSHM1+mzkau0ivIkU9kIn8JEFFSkmYTSaMaWMMHt96JjUtMKuXxeGNGSnHZ5290ZPKIlQfjoWFk2sKog==" + "resolved": "1.12.0", + "contentHash": "B1X51jrtNacKvxKoaqWeknYeJfQS5aWf6BmVLT5JZerz3AUXFzv8edPskJYqBc3kLy1J2PWzMqqsnyb9g8FtcA==" }, "Newtonsoft.Json": { "type": "Transitive", @@ -512,11 +511,6 @@ "System.Runtime": "4.3.0" } }, - "System.Diagnostics.DiagnosticSource": { - "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" - }, "System.Diagnostics.Tracing": { "type": "Transitive", "resolved": "4.1.0", @@ -551,11 +545,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": { @@ -743,15 +737,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": { @@ -771,16 +765,16 @@ "monai.deploy.workflowmanager.common.configuration": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )" } }, "monai.deploy.workflowmanager.contracts": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.3, )", + "Monai.Deploy.Messaging": "[2.0.4, )", "Mongo.Migration": "[3.1.4, )", - "MongoDB.Bson": "[2.25.0, )" + "MongoDB.Bson": "[2.23.1, )" } }, "monai.deploy.workflowmanager.database": { @@ -789,7 +783,7 @@ "Monai.Deploy.WorkflowManager.Contracts": "[1.0.0, )", "Monai.Deploy.WorkflowManager.Logging": "[1.0.0, )", "Mongo.Migration": "[3.1.4, )", - "MongoDB.Driver": "[2.25.0, )" + "MongoDB.Driver": "[2.30.0, )" } }, "monai.deploy.workflowmanager.logging": { @@ -801,7 +795,7 @@ "monai.deploy.workflowmanager.storage": { "type": "Project", "dependencies": { - "Monai.Deploy.Storage": "[1.0.1, )", + "Monai.Deploy.Storage": "[1.0.2, )", "Monai.Deploy.WorkflowManager.Contracts": "[1.0.0, )", "Monai.Deploy.WorkflowManager.Logging": "[1.0.0, )" } diff --git a/src/WorkflowManager/Storage/Constants/DicomTagConstants.cs b/src/WorkflowManager/Storage/Constants/DicomTagConstants.cs old mode 100644 new mode 100755 index 2caee5c6a..4c1140830 --- a/src/WorkflowManager/Storage/Constants/DicomTagConstants.cs +++ b/src/WorkflowManager/Storage/Constants/DicomTagConstants.cs @@ -31,5 +31,7 @@ public static class DicomTagConstants public const string PatientHospitalIdTag = "00100021"; public const string SeriesInstanceUIDTag = "0020000E"; + + public const string AccessionNumberTag = "00080050"; } } diff --git a/src/WorkflowManager/Storage/Monai.Deploy.WorkflowManager.Storage.csproj b/src/WorkflowManager/Storage/Monai.Deploy.WorkflowManager.Storage.csproj index d617ce2c8..07479e01b 100755 --- a/src/WorkflowManager/Storage/Monai.Deploy.WorkflowManager.Storage.csproj +++ b/src/WorkflowManager/Storage/Monai.Deploy.WorkflowManager.Storage.csproj @@ -30,7 +30,7 @@ - + diff --git a/src/WorkflowManager/Storage/Services/DicomService.cs b/src/WorkflowManager/Storage/Services/DicomService.cs old mode 100644 new mode 100755 index eeb8ce8ba..c1b4a2c6d --- a/src/WorkflowManager/Storage/Services/DicomService.cs +++ b/src/WorkflowManager/Storage/Services/DicomService.cs @@ -65,8 +65,8 @@ public DicomService(IStorageService storageService, ILogger logger public async Task GetPayloadPatientDetailsAsync(string payloadId, string bucketName) { - ArgumentNullException.ThrowIfNullOrWhiteSpace(bucketName, nameof(bucketName)); - ArgumentNullException.ThrowIfNullOrWhiteSpace(payloadId, nameof(payloadId)); + ArgumentNullException.ThrowIfNullOrWhiteSpace(bucketName); + ArgumentNullException.ThrowIfNullOrWhiteSpace(payloadId); var dict = await GetMetaData(payloadId, bucketName); @@ -91,7 +91,7 @@ public async Task GetPayloadPatientDetailsAsync(string payloadId private string? GetFirstValueAsync(Dictionary? dict, string keyId) { - ArgumentNullException.ThrowIfNullOrWhiteSpace(keyId, nameof(keyId)); + ArgumentNullException.ThrowIfNullOrWhiteSpace(keyId); if (dict is null) { return null; @@ -117,8 +117,8 @@ public async Task GetPayloadPatientDetailsAsync(string payloadId public async Task?> GetMetaData(string payloadId, string bucketId) { - ArgumentNullException.ThrowIfNullOrWhiteSpace(bucketId, nameof(bucketId)); - ArgumentNullException.ThrowIfNullOrWhiteSpace(payloadId, nameof(payloadId)); + ArgumentNullException.ThrowIfNullOrWhiteSpace(bucketId); + ArgumentNullException.ThrowIfNullOrWhiteSpace(payloadId); var items = await _storageService.ListObjectsAsync(bucketId, $"{payloadId}/dcm", true); var dict = new Dictionary(StringComparer.OrdinalIgnoreCase); try @@ -296,6 +296,22 @@ public string GetValue(Dictionary dict, string keyId) return null; } + public string? GetAccessionID(Dictionary? dict) + { + if (dict is null) + { + return null; + } + + if (dict.TryGetValue(DicomTagConstants.AccessionNumberTag, out var value)) + { + var accession = JsonConvert.SerializeObject(value.Value); + accession = accession.Replace("[\"", "").Replace("\"]", ""); + return accession; + } + return null; + } + private string TryGetValueAndLogSupported(string vrFullString, DicomValue value, string jsonString) { var result = TryGetValue(value); diff --git a/src/WorkflowManager/Storage/Services/IDicomService.cs b/src/WorkflowManager/Storage/Services/IDicomService.cs old mode 100644 new mode 100755 index 914c96ee5..0ce1de9be --- a/src/WorkflowManager/Storage/Services/IDicomService.cs +++ b/src/WorkflowManager/Storage/Services/IDicomService.cs @@ -76,7 +76,14 @@ public interface IDicomService /// Get the seriers instance UID from the metadata. /// /// - /// a string containing the seriers instanceUid + /// a string containing the series instanceUid string? GetSeriesInstanceUID(Dictionary? dict); + + /// + /// Gets the Accession number from the metadata. + /// + /// the metadata from the file + /// a string containing the accession number + string? GetAccessionID(Dictionary? dict); } } diff --git a/src/WorkflowManager/Storage/packages.lock.json b/src/WorkflowManager/Storage/packages.lock.json index 029d80729..b43fdeae3 100644 --- a/src/WorkflowManager/Storage/packages.lock.json +++ b/src/WorkflowManager/Storage/packages.lock.json @@ -4,32 +4,32 @@ "net8.0": { "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)" } }, "DnsClient": { @@ -115,34 +115,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", @@ -154,14 +153,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": { @@ -177,10 +176,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": { @@ -247,21 +246,21 @@ }, "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.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" } }, @@ -288,8 +287,8 @@ }, "MongoDB.Bson": { "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "xQx/qtC2nu9oGiyNqAwfiDpUMweLi0nID677cyKykpwmj5AVMrnd//UwmcmuX95178DeY6rf7cjmA613TQXPiA==", + "resolved": "2.23.1", + "contentHash": "IX9tycM35xK5hFwnU+rzharPJOtKYtON6E6Lp2nwOVjh40TUcS/HYToEEWZkLgqKNMCfYPK3Fz3QUCxzhkQRGA==", "dependencies": { "System.Memory": "4.5.5", "System.Runtime.CompilerServices.Unsafe": "5.0.0" @@ -469,11 +468,6 @@ "System.Runtime": "4.3.0" } }, - "System.Diagnostics.DiagnosticSource": { - "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" - }, "System.Diagnostics.Tracing": { "type": "Transitive", "resolved": "4.1.0", @@ -508,11 +502,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": { @@ -695,23 +689,23 @@ }, "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.workflowmanager.contracts": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.3, )", + "Monai.Deploy.Messaging": "[2.0.4, )", "Mongo.Migration": "[3.1.4, )", - "MongoDB.Bson": "[2.25.0, )" + "MongoDB.Bson": "[2.23.1, )" } }, "monai.deploy.workflowmanager.logging": { diff --git a/src/WorkflowManager/WorkflowExecuter/Monai.Deploy.WorkloadManager.WorkflowExecuter.csproj b/src/WorkflowManager/WorkflowExecuter/Monai.Deploy.WorkloadManager.WorkflowExecuter.csproj index 3eeece30f..c3a959607 100644 --- a/src/WorkflowManager/WorkflowExecuter/Monai.Deploy.WorkloadManager.WorkflowExecuter.csproj +++ b/src/WorkflowManager/WorkflowExecuter/Monai.Deploy.WorkloadManager.WorkflowExecuter.csproj @@ -32,7 +32,7 @@ - + diff --git a/src/WorkflowManager/WorkflowExecuter/packages.lock.json b/src/WorkflowManager/WorkflowExecuter/packages.lock.json index 22b424013..5d168cd21 100644 --- a/src/WorkflowManager/WorkflowExecuter/packages.lock.json +++ b/src/WorkflowManager/WorkflowExecuter/packages.lock.json @@ -4,38 +4,38 @@ "net8.0": { "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" } }, "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", @@ -47,19 +47,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" } }, @@ -109,8 +109,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", @@ -152,34 +152,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", @@ -191,14 +190,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": { @@ -215,10 +214,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": { @@ -294,21 +293,21 @@ }, "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" } }, @@ -335,8 +334,8 @@ }, "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" @@ -344,25 +343,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", @@ -371,8 +370,8 @@ }, "MongoDB.Libmongocrypt": { "type": "Transitive", - "resolved": "1.8.2", - "contentHash": "z/8JCULSHM1+mzkau0ivIkU9kIn8JEFFSkmYTSaMaWMMHt96JjUtMKuXxeGNGSnHZ5290ZPKIlQfjoWFk2sKog==" + "resolved": "1.12.0", + "contentHash": "B1X51jrtNacKvxKoaqWeknYeJfQS5aWf6BmVLT5JZerz3AUXFzv8edPskJYqBc3kLy1J2PWzMqqsnyb9g8FtcA==" }, "Newtonsoft.Json": { "type": "Transitive", @@ -525,8 +524,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.Tracing": { "type": "Transitive", @@ -562,11 +564,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": { @@ -704,11 +706,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.Encoding.Extensions": { "type": "Transitive", @@ -723,20 +722,13 @@ }, "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": { "type": "Transitive", @@ -779,15 +771,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": { @@ -807,15 +799,15 @@ "monai.deploy.workflowmanager.common.configuration": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )" } }, "monai.deploy.workflowmanager.common.miscellaneous": { "type": "Project", "dependencies": { "Monai.Deploy.WorkflowManager.Common.Configuration": "[1.0.0, )", - "fo-dicom": "[5.1.2, )" + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.workflowmanager.conditionsresolver": { @@ -830,9 +822,9 @@ "monai.deploy.workflowmanager.contracts": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.3, )", + "Monai.Deploy.Messaging": "[2.0.4, )", "Mongo.Migration": "[3.1.4, )", - "MongoDB.Bson": "[2.25.0, )" + "MongoDB.Bson": "[2.23.1, )" } }, "monai.deploy.workflowmanager.database": { @@ -841,7 +833,7 @@ "Monai.Deploy.WorkflowManager.Contracts": "[1.0.0, )", "Monai.Deploy.WorkflowManager.Logging": "[1.0.0, )", "Mongo.Migration": "[3.1.4, )", - "MongoDB.Driver": "[2.25.0, )" + "MongoDB.Driver": "[2.30.0, )" } }, "monai.deploy.workflowmanager.logging": { @@ -853,7 +845,7 @@ "monai.deploy.workflowmanager.storage": { "type": "Project", "dependencies": { - "Monai.Deploy.Storage": "[1.0.1, )", + "Monai.Deploy.Storage": "[1.0.2, )", "Monai.Deploy.WorkflowManager.Contracts": "[1.0.0, )", "Monai.Deploy.WorkflowManager.Logging": "[1.0.0, )" } diff --git a/src/WorkflowManager/WorkflowManager/Controllers/PayloadsController.cs b/src/WorkflowManager/WorkflowManager/Controllers/PayloadsController.cs old mode 100644 new mode 100755 index b31618472..6919e3dfa --- a/src/WorkflowManager/WorkflowManager/Controllers/PayloadsController.cs +++ b/src/WorkflowManager/WorkflowManager/Controllers/PayloadsController.cs @@ -30,6 +30,8 @@ using Monai.Deploy.WorkflowManager.Common.Miscellaneous.Interfaces; using Monai.Deploy.WorkflowManager.Common.Miscellaneous.Services; using Monai.Deploy.WorkflowManager.Common.Miscellaneous.Wrappers; +using MongoDB.Bson; +using MongoDB.Driver; namespace Monai.Deploy.WorkflowManager.Common.ControllersShared { @@ -72,11 +74,16 @@ public PayloadsController( /// Filters. /// Optional patient Id. /// Optional patient name. + /// Optional accession Id. /// paged response of subset of all workflows. [HttpGet] [ProducesResponseType(typeof(PagedResponse>), StatusCodes.Status200OK)] [ProducesResponseType(typeof(ProblemDetails), StatusCodes.Status500InternalServerError)] - public async Task GetAllAsync([FromQuery] PaginationFilter filter, [FromQuery] string patientId = "", [FromQuery] string patientName = "") + public async Task GetAllAsync( + [FromQuery] PaginationFilter filter, + [FromQuery] string patientId = null, + [FromQuery] string patientName = null, + [FromQuery] string accessionId = null) { try { @@ -88,9 +95,28 @@ public async Task GetAllAsync([FromQuery] PaginationFilter filter (validFilter.PageNumber - 1) * validFilter.PageSize, validFilter.PageSize, patientId, - patientName); + patientName, + accessionId); - var dataTotal = await _payloadService.CountAsync(); + var builder = Builders.Filter; + var dbFilter = builder.Empty; + + if (!string.IsNullOrEmpty(patientId)) + { + dbFilter &= builder.Regex(p => p.PatientDetails.PatientId, new BsonRegularExpression($"/{patientId}/i")); + } + + if (!string.IsNullOrEmpty(patientName)) + { + dbFilter &= builder.Regex(p => p.PatientDetails.PatientName, new BsonRegularExpression($"/{patientName}/i")); + } + + if (!string.IsNullOrWhiteSpace(accessionId)) + { + dbFilter &= builder.Regex(p => p.AccessionId, new BsonRegularExpression($"/{accessionId}/i")); + } + + var dataTotal = await _payloadService.CountAsync(dbFilter); var pagedReponse = CreatePagedResponse(pagedData.ToList(), validFilter, dataTotal, _uriService, route); return Ok(pagedReponse); diff --git a/src/WorkflowManager/WorkflowManager/Controllers/TaskStatsController.cs b/src/WorkflowManager/WorkflowManager/Controllers/TaskStatsController.cs old mode 100644 new mode 100755 index e2e2cbd61..3abf32a94 --- a/src/WorkflowManager/WorkflowManager/Controllers/TaskStatsController.cs +++ b/src/WorkflowManager/WorkflowManager/Controllers/TaskStatsController.cs @@ -140,10 +140,10 @@ public async Task GetDailyStatsAsync([FromQuery] TimeFilter filte TotalApprovals = g.Count(i => string.Compare(i.Status, "Succeeded", true) == 0 && i.Reason == FailureReason.None), TotalRejections = g.Count(i => string.Compare(i.Status, "Failed", true) == 0 && i.Reason == FailureReason.Rejected), TotalCancelled = g.Count(i => string.Compare(i.Status, "Failed", true) == 0 && i.Reason == FailureReason.TimedOut), - TotalAwaitingReview = g.Count(i => string.Compare(i.Status, ApplicationReviewStatus.AwaitingReview.ToString(), true) == 0), - }); - + // TotalAwaitingReview = g.Count(i => string.Compare(i.Status, ApplicationReviewStatus.AwaitingReview.ToString(), true) == 0), + TotalAwaitingReview = g.Count(i => string.Compare(i.Status, TaskExecutionStatus.Accepted.ToString(), true) == 0), + }); var pagedStats = statsDto.Skip((filter.PageNumber - 1) * pageSize).Take(pageSize); diff --git a/src/WorkflowManager/WorkflowManager/Monai.Deploy.WorkflowManager.csproj b/src/WorkflowManager/WorkflowManager/Monai.Deploy.WorkflowManager.csproj index 066b5e813..ef6531ef6 100644 --- a/src/WorkflowManager/WorkflowManager/Monai.Deploy.WorkflowManager.csproj +++ b/src/WorkflowManager/WorkflowManager/Monai.Deploy.WorkflowManager.csproj @@ -34,25 +34,26 @@ - - - - + + + + true true - + + true - + all runtime; build; native; contentfiles; analyzers; buildtransitive - - + + diff --git a/src/WorkflowManager/WorkflowManager/appsettings.Local.json b/src/WorkflowManager/WorkflowManager/appsettings.Local.json index cd86c2532..cc582a9dd 100755 --- a/src/WorkflowManager/WorkflowManager/appsettings.Local.json +++ b/src/WorkflowManager/WorkflowManager/appsettings.Local.json @@ -1,6 +1,6 @@ { "WorkloadManagerDatabase": { - "ConnectionString": "mongodb://root:rootpassword@localhost:27017", + "ConnectionString": "mongodb://root:rootpassword@localhost:30017", "DatabaseName": "WorkloadManager" }, "MonaiDeployAuthentication": { @@ -100,7 +100,7 @@ "migExternalAppPlugins2": [ "Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution.DicomDeidentifier, Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution, Version=0.0.0.0" ], - "migExternalAppPlugins": [""], + "migExternalAppPlugins": [ "" ], "InformaticsGateway": { "apiHost": "http://localhost:5010", "username": "aide", @@ -117,5 +117,10 @@ "LogHttpResponseBody": true }, "AllowedHosts": "*" + }, + "InformaticsGateway": { + "apiHost": "http://localhost:5010", + "username": "", + "password": "" } } \ No newline at end of file diff --git a/src/WorkflowManager/WorkflowManager/packages.lock.json b/src/WorkflowManager/WorkflowManager/packages.lock.json index 9c9236d9d..cd6a00968 100644 --- a/src/WorkflowManager/WorkflowManager/packages.lock.json +++ b/src/WorkflowManager/WorkflowManager/packages.lock.json @@ -4,60 +4,60 @@ "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.AspNetCore.Mvc.NewtonsoftJson": { "type": "Direct", - "requested": "[8.0.6, )", - "resolved": "8.0.6", - "contentHash": "AOoi7cmh2yTVHMNMRYEfAj26NCOur9pd70GSXaDNJvVtD7e/I9UddIkwnj7HAWKtUn2EUOzSKCpt/RZllYiO5w==", + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "322+FAPeMslfd320h8sASJSJ3h5s4dVr6W0xypr28Vz/cbMFjVCLHOou418cc2Xh0kXRzMy3irD3jBzSA+EiDA==", "dependencies": { - "Microsoft.AspNetCore.JsonPatch": "8.0.6", + "Microsoft.AspNetCore.JsonPatch": "8.0.14", "Newtonsoft.Json": "13.0.3", "Newtonsoft.Json.Bson": "1.0.2" } }, "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" } }, "Mongo.Migration": { @@ -82,19 +82,31 @@ "System.ValueTuple": "4.5.0" } }, + "MongoDB.Driver": { + "type": "Direct", + "requested": "[2.30.0, )", + "resolved": "2.30.0", + "contentHash": "BCG8cNF0+U3h5f/O9fu3ktrYhoESBDems1w06PExfYrn2KjHBHCBdvBRY1cIbysnZVjQAJjGtFV9XgW+hXt7Hg==", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.0.0", + "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==" }, "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" } }, "StyleCop.Analyzers": { @@ -105,38 +117,38 @@ }, "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==" }, "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", @@ -148,19 +160,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" } }, @@ -174,10 +186,10 @@ }, "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.AspNetCore.Hosting.Abstractions": { @@ -218,8 +230,8 @@ }, "Microsoft.AspNetCore.JsonPatch": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "f23867xv+b5Cps3G2WDqjx3JjluLdR/TxfVI9sqk3d1ceQgOSD1WrqrQA66frdd5eQq+uqTGRReq1OQhQqodWQ==", + "resolved": "8.0.14", + "contentHash": "S0ZPiwLvRCYWYz7WTxaTZIyBEYOTPR+Rujdiwz4gUGauWpAhXu846I29xjOTBPX1d5HUcBNlJ46cgDDAev94Gg==", "dependencies": { "Microsoft.CSharp": "4.7.0", "Newtonsoft.Json": "13.0.3" @@ -227,8 +239,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", @@ -264,60 +276,59 @@ }, "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.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.Diagnostics": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "3PZp/YSkIXrF7QK7PfC1bkyRYwqOHpWFad8Qx+4wkuumAeXo1NHaxpS9LboNA9OvNSAu+QOVlXbMyoY+pHSqcw==", + "resolved": "8.0.1", + "contentHash": "doVPCUUCY7c6LhBsEfiy3W1bvS7Mi6LkfQMS8nlC22jZWNxBv8VO8bdfeyvpYFst6Kxqk7HBC6lytmEoBssvSQ==", "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0" } }, "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", @@ -329,59 +340,59 @@ }, "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": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "cWz4caHwvx0emoYe7NkHPxII/KkTI8R/LC9qdqJqnKv2poTJ4e2qqPGQqvRoQ5kaSA4FU5IV3qFAuLuOhoqULQ==", + "resolved": "8.0.1", + "contentHash": "kDYeKJUzh0qeg/AI+nSr3ffthmXYQTEb0nS9qRC7YhSbbuN4M4NPbaB77AJwtkTnCV9XZ7qYj3dkZaNcyl73EA==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Diagnostics": "8.0.0", - "Microsoft.Extensions.Logging": "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.Diagnostics": "8.0.1", + "Microsoft.Extensions.Logging": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "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" } }, @@ -431,49 +442,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": { @@ -488,8 +499,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", @@ -514,65 +525,54 @@ }, "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" } }, - "MongoDB.Driver": { - "type": "Transitive", - "resolved": "2.25.0", - "contentHash": "dMqnZTV6MuvoEI4yFtSvKJdAoN6NeyAEvG8aoxnrLIVd7bR84QxLgpsM1nhK17qkOcIx/IrpMIfrvp5iMnYGBg==", - "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.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", @@ -581,8 +581,8 @@ }, "MongoDB.Libmongocrypt": { "type": "Transitive", - "resolved": "1.8.2", - "contentHash": "z/8JCULSHM1+mzkau0ivIkU9kIn8JEFFSkmYTSaMaWMMHt96JjUtMKuXxeGNGSnHZ5290ZPKIlQfjoWFk2sKog==" + "resolved": "1.12.0", + "contentHash": "B1X51jrtNacKvxKoaqWeknYeJfQS5aWf6BmVLT5JZerz3AUXFzv8edPskJYqBc3kLy1J2PWzMqqsnyb9g8FtcA==" }, "Newtonsoft.Json": { "type": "Transitive", @@ -599,26 +599,26 @@ }, "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", @@ -715,24 +715,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", @@ -789,11 +789,6 @@ "System.Runtime": "4.3.0" } }, - "System.Diagnostics.DiagnosticSource": { - "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==" - }, "System.Diagnostics.Tracing": { "type": "Transitive", "resolved": "4.1.0", @@ -816,11 +811,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": { @@ -837,11 +832,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": { @@ -927,8 +922,8 @@ }, "System.Runtime.CompilerServices.Unsafe": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==" + "resolved": "5.0.0", + "contentHash": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==" }, "System.Runtime.Extensions": { "type": "Transitive", @@ -989,11 +984,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.Encoding.Extensions": { "type": "Transitive", @@ -1008,20 +1000,13 @@ }, "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": { "type": "Transitive", @@ -1064,15 +1049,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": { @@ -1092,15 +1077,15 @@ "monai.deploy.workflowmanager.common.configuration": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )" } }, "monai.deploy.workflowmanager.common.miscellaneous": { "type": "Project", "dependencies": { "Monai.Deploy.WorkflowManager.Common.Configuration": "[1.0.0, )", - "fo-dicom": "[5.1.2, )" + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.workflowmanager.conditionsresolver": { @@ -1115,9 +1100,9 @@ "monai.deploy.workflowmanager.contracts": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.3, )", + "Monai.Deploy.Messaging": "[2.0.4, )", "Mongo.Migration": "[3.1.4, )", - "MongoDB.Bson": "[2.25.0, )" + "MongoDB.Bson": "[2.23.1, )" } }, "monai.deploy.workflowmanager.database": { @@ -1126,7 +1111,7 @@ "Monai.Deploy.WorkflowManager.Contracts": "[1.0.0, )", "Monai.Deploy.WorkflowManager.Logging": "[1.0.0, )", "Mongo.Migration": "[3.1.4, )", - "MongoDB.Driver": "[2.25.0, )" + "MongoDB.Driver": "[2.30.0, )" } }, "monai.deploy.workflowmanager.logging": { @@ -1155,7 +1140,7 @@ "monai.deploy.workflowmanager.services": { "type": "Project", "dependencies": { - "Microsoft.Extensions.Http": "[8.0.0, )", + "Microsoft.Extensions.Http": "[8.0.1, )", "Monai.Deploy.WorkflowManager.Common": "[1.0.0, )", "Monai.Deploy.WorkflowManager.Common.Configuration": "[1.0.0, )" } @@ -1163,7 +1148,7 @@ "monai.deploy.workflowmanager.storage": { "type": "Project", "dependencies": { - "Monai.Deploy.Storage": "[1.0.1, )", + "Monai.Deploy.Storage": "[1.0.2, )", "Monai.Deploy.WorkflowManager.Contracts": "[1.0.0, )", "Monai.Deploy.WorkflowManager.Logging": "[1.0.0, )" } @@ -1171,7 +1156,7 @@ "monai.deploy.workloadmanager.workflowexecuter": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.3, )", + "Monai.Deploy.Messaging": "[2.0.4, )", "Monai.Deploy.WorkflowManager.Common": "[1.0.0, )", "Monai.Deploy.WorkflowManager.Common.Configuration": "[1.0.0, )", "Monai.Deploy.WorkflowManager.Common.Miscellaneous": "[1.0.0, )", diff --git a/tests/IntegrationTests/TaskManager.IntegrationTests/Monai.Deploy.WorkflowManager.TaskManager.IntegrationTests.csproj b/tests/IntegrationTests/TaskManager.IntegrationTests/Monai.Deploy.WorkflowManager.TaskManager.IntegrationTests.csproj index e36a67270..022c91338 100644 --- a/tests/IntegrationTests/TaskManager.IntegrationTests/Monai.Deploy.WorkflowManager.TaskManager.IntegrationTests.csproj +++ b/tests/IntegrationTests/TaskManager.IntegrationTests/Monai.Deploy.WorkflowManager.TaskManager.IntegrationTests.csproj @@ -21,21 +21,21 @@ - + - - - - + + + + - - + + - - - - + + + + diff --git a/tests/IntegrationTests/WorkflowExecutor.IntegrationTests/Monai.Deploy.WorkflowManager.WorkflowExecutor.IntegrationTests.csproj b/tests/IntegrationTests/WorkflowExecutor.IntegrationTests/Monai.Deploy.WorkflowManager.WorkflowExecutor.IntegrationTests.csproj index 87bdef046..61bb3d98d 100644 --- a/tests/IntegrationTests/WorkflowExecutor.IntegrationTests/Monai.Deploy.WorkflowManager.WorkflowExecutor.IntegrationTests.csproj +++ b/tests/IntegrationTests/WorkflowExecutor.IntegrationTests/Monai.Deploy.WorkflowManager.WorkflowExecutor.IntegrationTests.csproj @@ -28,19 +28,19 @@ - + - - - - - - + + + + + + - - - + + + diff --git a/tests/UnitTests/Common.Tests/Monai.Deploy.WorkflowManager.Common.Tests.csproj b/tests/UnitTests/Common.Tests/Monai.Deploy.WorkflowManager.Common.Tests.csproj index f7f442712..4a739ebdd 100644 --- a/tests/UnitTests/Common.Tests/Monai.Deploy.WorkflowManager.Common.Tests.csproj +++ b/tests/UnitTests/Common.Tests/Monai.Deploy.WorkflowManager.Common.Tests.csproj @@ -21,15 +21,15 @@ false - - - - - + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/tests/UnitTests/Common.Tests/Services/PayloadServiceTests.cs b/tests/UnitTests/Common.Tests/Services/PayloadServiceTests.cs old mode 100644 new mode 100755 index c3931e7ca..a95f86ff7 --- a/tests/UnitTests/Common.Tests/Services/PayloadServiceTests.cs +++ b/tests/UnitTests/Common.Tests/Services/PayloadServiceTests.cs @@ -234,7 +234,7 @@ public async Task GetAll_ReturnsCompletedPayloads() _payloadRepository.Setup(p => p.GetAllAsync( - It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny()) + It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny()) ).ReturnsAsync(() => input); var param = new List() { input.First().Id }; _workflowInstanceRepository.Setup(r => @@ -301,7 +301,7 @@ public async Task GetAll_ReturnsPayloads() _payloadRepository.Setup(p => p.GetAllAsync( - It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny()) + It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny()) ).ReturnsAsync(() => input); var param = input.Select(i => i.PayloadId).ToList(); _workflowInstanceRepository.Setup(r => diff --git a/tests/UnitTests/Common.Tests/Services/WorkflowServiceTests.cs b/tests/UnitTests/Common.Tests/Services/WorkflowServiceTests.cs old mode 100644 new mode 100755 index 9007b5bfb..c01b1e863 --- a/tests/UnitTests/Common.Tests/Services/WorkflowServiceTests.cs +++ b/tests/UnitTests/Common.Tests/Services/WorkflowServiceTests.cs @@ -21,6 +21,7 @@ using Monai.Deploy.WorkflowManager.Common.Database.Interfaces; using Moq; using Xunit; +using MongoDB.Driver; namespace Monai.Deploy.WorkflowManger.Common.Tests.Services { @@ -137,7 +138,7 @@ public async Task WorkflowService_DeleteWorkflow_Calls_SoftDelete() public async Task WorkflowService_Count_Calls_Count() { var result = await WorkflowService.CountAsync(); - _workflowRepository.Verify(r => r.CountAsync(), Times.Once()); + _workflowRepository.Verify(r => r.CountAsync(Builders.Filter.Empty), Times.Once()); } [Fact] diff --git a/tests/UnitTests/ConditionsResolver.Tests/Monai.Deploy.WorkflowManager.ConditionsResolver.Tests.csproj b/tests/UnitTests/ConditionsResolver.Tests/Monai.Deploy.WorkflowManager.ConditionsResolver.Tests.csproj index 03f28424a..e9c57b7c7 100644 --- a/tests/UnitTests/ConditionsResolver.Tests/Monai.Deploy.WorkflowManager.ConditionsResolver.Tests.csproj +++ b/tests/UnitTests/ConditionsResolver.Tests/Monai.Deploy.WorkflowManager.ConditionsResolver.Tests.csproj @@ -20,13 +20,13 @@ false - - - + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/tests/UnitTests/Configuration.Tests/Monai.Deploy.WorkflowManager.Configuration.Tests.csproj b/tests/UnitTests/Configuration.Tests/Monai.Deploy.WorkflowManager.Configuration.Tests.csproj index dde178305..6d308f326 100644 --- a/tests/UnitTests/Configuration.Tests/Monai.Deploy.WorkflowManager.Configuration.Tests.csproj +++ b/tests/UnitTests/Configuration.Tests/Monai.Deploy.WorkflowManager.Configuration.Tests.csproj @@ -20,14 +20,14 @@ false - + all runtime; build; native; contentfiles; analyzers; buildtransitive - - - - + + + + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/tests/UnitTests/Database.Tests/Monai.Deploy.WorkflowManager.Database.Tests.csproj b/tests/UnitTests/Database.Tests/Monai.Deploy.WorkflowManager.Database.Tests.csproj index 425894aef..f5a03c315 100644 --- a/tests/UnitTests/Database.Tests/Monai.Deploy.WorkflowManager.Database.Tests.csproj +++ b/tests/UnitTests/Database.Tests/Monai.Deploy.WorkflowManager.Database.Tests.csproj @@ -20,14 +20,14 @@ false - - - - + + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/tests/UnitTests/Monai.Deploy.WorkflowManager.Shared.Tests/Monai.Deploy.WorkflowManager.Shared.Tests.csproj b/tests/UnitTests/Monai.Deploy.WorkflowManager.Shared.Tests/Monai.Deploy.WorkflowManager.Shared.Tests.csproj index 32296ac74..370b536ed 100644 --- a/tests/UnitTests/Monai.Deploy.WorkflowManager.Shared.Tests/Monai.Deploy.WorkflowManager.Shared.Tests.csproj +++ b/tests/UnitTests/Monai.Deploy.WorkflowManager.Shared.Tests/Monai.Deploy.WorkflowManager.Shared.Tests.csproj @@ -21,14 +21,14 @@ false - - - - + + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/tests/UnitTests/MonaiBackgroundService.Tests/Monai.Deploy.WorkflowManager.MonaiBackgroundService.Tests.csproj b/tests/UnitTests/MonaiBackgroundService.Tests/Monai.Deploy.WorkflowManager.MonaiBackgroundService.Tests.csproj index 503f1cb15..41163a9cc 100644 --- a/tests/UnitTests/MonaiBackgroundService.Tests/Monai.Deploy.WorkflowManager.MonaiBackgroundService.Tests.csproj +++ b/tests/UnitTests/MonaiBackgroundService.Tests/Monai.Deploy.WorkflowManager.MonaiBackgroundService.Tests.csproj @@ -21,14 +21,14 @@ false - + all runtime; build; native; contentfiles; analyzers; buildtransitive - - - - + + + + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/tests/UnitTests/PayloadListener.Tests/Monai.Deploy.WorkflowManager.PayloadListener.Tests.csproj b/tests/UnitTests/PayloadListener.Tests/Monai.Deploy.WorkflowManager.PayloadListener.Tests.csproj index 1c983c2f5..840a55a7a 100644 --- a/tests/UnitTests/PayloadListener.Tests/Monai.Deploy.WorkflowManager.PayloadListener.Tests.csproj +++ b/tests/UnitTests/PayloadListener.Tests/Monai.Deploy.WorkflowManager.PayloadListener.Tests.csproj @@ -20,11 +20,11 @@ false - - - - - + + + + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/tests/UnitTests/Storage.Tests/Monai.Deploy.WorkflowManager.Storage.Tests.csproj b/tests/UnitTests/Storage.Tests/Monai.Deploy.WorkflowManager.Storage.Tests.csproj index 7d626e167..8fb563eb4 100644 --- a/tests/UnitTests/Storage.Tests/Monai.Deploy.WorkflowManager.Storage.Tests.csproj +++ b/tests/UnitTests/Storage.Tests/Monai.Deploy.WorkflowManager.Storage.Tests.csproj @@ -20,15 +20,15 @@ false - - - - - + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/tests/UnitTests/TaskManager.AideClinicalReview.Tests/Monai.Deploy.WorkflowManager.TaskManager.AideClinicalReview.Tests.csproj b/tests/UnitTests/TaskManager.AideClinicalReview.Tests/Monai.Deploy.WorkflowManager.TaskManager.AideClinicalReview.Tests.csproj index 0ea901e3a..56426d313 100644 --- a/tests/UnitTests/TaskManager.AideClinicalReview.Tests/Monai.Deploy.WorkflowManager.TaskManager.AideClinicalReview.Tests.csproj +++ b/tests/UnitTests/TaskManager.AideClinicalReview.Tests/Monai.Deploy.WorkflowManager.TaskManager.AideClinicalReview.Tests.csproj @@ -20,14 +20,14 @@ false - - - - + + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/tests/UnitTests/TaskManager.Argo.Tests/Monai.Deploy.WorkflowManager.TaskManager.Argo.Tests.csproj b/tests/UnitTests/TaskManager.Argo.Tests/Monai.Deploy.WorkflowManager.TaskManager.Argo.Tests.csproj index 6ddb9332e..09fe02413 100644 --- a/tests/UnitTests/TaskManager.Argo.Tests/Monai.Deploy.WorkflowManager.TaskManager.Argo.Tests.csproj +++ b/tests/UnitTests/TaskManager.Argo.Tests/Monai.Deploy.WorkflowManager.TaskManager.Argo.Tests.csproj @@ -23,14 +23,14 @@ - - - - + + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/tests/UnitTests/TaskManager.Docker.Tests/Monai.Deploy.WorkflowManager.TaskManager.Docker.Tests.csproj b/tests/UnitTests/TaskManager.Docker.Tests/Monai.Deploy.WorkflowManager.TaskManager.Docker.Tests.csproj index abf87354e..b263de53b 100644 --- a/tests/UnitTests/TaskManager.Docker.Tests/Monai.Deploy.WorkflowManager.TaskManager.Docker.Tests.csproj +++ b/tests/UnitTests/TaskManager.Docker.Tests/Monai.Deploy.WorkflowManager.TaskManager.Docker.Tests.csproj @@ -24,15 +24,15 @@ - - - - - + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/tests/UnitTests/TaskManager.Email.Tests/Monai.Deploy.WorkflowManager.TaskManager.Email.Tests.csproj b/tests/UnitTests/TaskManager.Email.Tests/Monai.Deploy.WorkflowManager.TaskManager.Email.Tests.csproj index 9ecc4da7f..2323f4436 100644 --- a/tests/UnitTests/TaskManager.Email.Tests/Monai.Deploy.WorkflowManager.TaskManager.Email.Tests.csproj +++ b/tests/UnitTests/TaskManager.Email.Tests/Monai.Deploy.WorkflowManager.TaskManager.Email.Tests.csproj @@ -21,14 +21,14 @@ enable - - - - + + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/tests/UnitTests/TaskManager.Tests/Monai.Deploy.WorkflowManager.TaskManager.Tests.csproj b/tests/UnitTests/TaskManager.Tests/Monai.Deploy.WorkflowManager.TaskManager.Tests.csproj index f6a571e3b..5702d839d 100644 --- a/tests/UnitTests/TaskManager.Tests/Monai.Deploy.WorkflowManager.TaskManager.Tests.csproj +++ b/tests/UnitTests/TaskManager.Tests/Monai.Deploy.WorkflowManager.TaskManager.Tests.csproj @@ -20,15 +20,15 @@ false - - - - - + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/tests/UnitTests/WorkflowExecuter.Tests/Monai.Deploy.WorkflowManager.WorkflowExecuter.Tests.csproj b/tests/UnitTests/WorkflowExecuter.Tests/Monai.Deploy.WorkflowManager.WorkflowExecuter.Tests.csproj index e7683d1cf..ad8e2a4cb 100644 --- a/tests/UnitTests/WorkflowExecuter.Tests/Monai.Deploy.WorkflowManager.WorkflowExecuter.Tests.csproj +++ b/tests/UnitTests/WorkflowExecuter.Tests/Monai.Deploy.WorkflowManager.WorkflowExecuter.Tests.csproj @@ -20,15 +20,15 @@ false - - - - - + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/tests/UnitTests/WorkflowManager.Services.Tests/Monai.Deploy.WorkflowManager.Services.Tests.csproj b/tests/UnitTests/WorkflowManager.Services.Tests/Monai.Deploy.WorkflowManager.Services.Tests.csproj index 6f5174292..33e0d2229 100644 --- a/tests/UnitTests/WorkflowManager.Services.Tests/Monai.Deploy.WorkflowManager.Services.Tests.csproj +++ b/tests/UnitTests/WorkflowManager.Services.Tests/Monai.Deploy.WorkflowManager.Services.Tests.csproj @@ -21,14 +21,14 @@ false - - - - + + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/tests/UnitTests/WorkflowManager.Tests/Controllers/PayloadControllerTests.cs b/tests/UnitTests/WorkflowManager.Tests/Controllers/PayloadControllerTests.cs old mode 100644 new mode 100755 index b907cc4e0..8e725da1c --- a/tests/UnitTests/WorkflowManager.Tests/Controllers/PayloadControllerTests.cs +++ b/tests/UnitTests/WorkflowManager.Tests/Controllers/PayloadControllerTests.cs @@ -32,6 +32,8 @@ using Xunit; using Monai.Deploy.WorkflowManager.Common.Miscellaneous.Filter; using Monai.Deploy.WorkflowManager.Common.Miscellaneous.Services; +using MongoDB.Driver; +using MongoDB.Bson.Serialization; namespace Monai.Deploy.WorkflowManager.Common.Test.Controllers { @@ -66,8 +68,8 @@ public async Task GetListAsync_PayloadsExist_ReturnsList() } }; - _payloadService.Setup(w => w.GetAllAsync(It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny())).ReturnsAsync(payloads); - _payloadService.Setup(w => w.CountAsync()).ReturnsAsync(payloads.Count); + _payloadService.Setup(w => w.GetAllAsync(It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny())).ReturnsAsync(payloads); + _payloadService.Setup(w => w.CountAsync(Builders.Filter.Empty)).ReturnsAsync(payloads.Count); _uriService.Setup(s => s.GetPageUriString(It.IsAny(), It.IsAny())).Returns(() => "unitTest"); var result = await PayloadController.GetAllAsync(new PaginationFilter()); @@ -91,10 +93,50 @@ public async Task GetListAsync_PayloadsExist_ReturnsList() responseValue.Errors.Should().BeNullOrEmpty(); } + [Fact] + public async Task GetAllAsync_WithFilter_CallsPayloadServiceCountAsyncWithFilter() + { + + // Arrange + var filter = new PaginationFilter + { + PageNumber = 1, + PageSize = 10 + }; + var patientId = "123"; + var patientName = "John"; + var accessionId = "456"; + + var pagedData = new List(); + var dataTotal = 5; + + FilterDefinition capturedFilter = null; // Declare a variable to capture the filter + + _payloadService.Setup(x => x.GetAllAsync(It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny())).ReturnsAsync(pagedData); + + _payloadService.Setup(x => x.CountAsync(It.IsAny>())) + .Callback>(filter => capturedFilter = filter) // Capture the filter + .ReturnsAsync(dataTotal); + + // Act + var result = await PayloadController.GetAllAsync(filter, patientId, patientName, accessionId); + + // Assert + _payloadService.Verify(x => x.CountAsync(It.IsAny>()), Times.Once); + Assert.NotNull(capturedFilter); // Assert that the filter was captured + var json = capturedFilter.Render(BsonSerializer.SerializerRegistry.GetSerializer(), BsonSerializer.SerializerRegistry); + Assert.Contains(patientId, json.ToString()); + Assert.Contains(patientName, json.ToString()); + Assert.Contains(accessionId, json.ToString()); + Assert.Contains("PatientDetails.PatientId", json.ToString()); + Assert.Contains("PatientDetails.PatientName", json.ToString()); + Assert.Contains("AccessionId", json.ToString()); + } + [Fact] public async Task GetListAsync_ServiceException_ReturnProblem() { - _payloadService.Setup(w => w.GetAllAsync(It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny())).ThrowsAsync(new Exception()); + _payloadService.Setup(w => w.GetAllAsync(It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny())).ThrowsAsync(new Exception()); var result = await PayloadController.GetAllAsync(new PaginationFilter()); diff --git a/tests/UnitTests/WorkflowManager.Tests/Controllers/WorkflowInstanceControllerTests.cs b/tests/UnitTests/WorkflowManager.Tests/Controllers/WorkflowInstanceControllerTests.cs old mode 100644 new mode 100755 index 390c24aed..af6b7c089 --- a/tests/UnitTests/WorkflowManager.Tests/Controllers/WorkflowInstanceControllerTests.cs +++ b/tests/UnitTests/WorkflowManager.Tests/Controllers/WorkflowInstanceControllerTests.cs @@ -35,6 +35,7 @@ using Moq; using Xunit; using Monai.Deploy.WorkflowManager.Common.Miscellaneous.Filter; +using MongoDB.Driver; namespace Monai.Deploy.WorkflowManager.Common.Test.Controllers { @@ -157,7 +158,7 @@ public async Task GetListAsync_InvalidPayloadId_Returns400() public async Task GetListAsync_ServiceException_ReturnProblem() { _workflowInstanceService.Setup(w => w.GetAllAsync(It.IsAny(), It.IsAny(), It.IsAny(), It.IsAny())).ThrowsAsync(new Exception()); - _workflowInstanceService.Setup(w => w.CountAsync()).ReturnsAsync(0); + _workflowInstanceService.Setup(w => w.CountAsync(Builders.Filter.Empty)).ReturnsAsync(0); var result = await WorkflowInstanceController.GetListAsync(new PaginationFilter()); diff --git a/tests/UnitTests/WorkflowManager.Tests/Controllers/WorkflowsControllerTests.cs b/tests/UnitTests/WorkflowManager.Tests/Controllers/WorkflowsControllerTests.cs old mode 100644 new mode 100755 index 486127160..04625268b --- a/tests/UnitTests/WorkflowManager.Tests/Controllers/WorkflowsControllerTests.cs +++ b/tests/UnitTests/WorkflowManager.Tests/Controllers/WorkflowsControllerTests.cs @@ -34,6 +34,7 @@ using Monai.Deploy.WorkflowManager.Common.Services.InformaticsGateway; using Monai.Deploy.WorkflowManager.Common.Miscellaneous.Exceptions; using Monai.Deploy.WorkflowManager.Common.Miscellaneous.Filter; +using MongoDB.Driver; namespace Monai.Deploy.WorkflowManager.Common.Test.Controllers { @@ -108,7 +109,7 @@ public async void GetList_WorkflowsExist_ReturnsList() }; _workflowService.Setup(w => w.GetAllAsync(It.IsAny(), It.IsAny())).ReturnsAsync(workflows); - _workflowService.Setup(w => w.CountAsync()).ReturnsAsync(workflows.Count); + _workflowService.Setup(w => w.CountAsync(null)).ReturnsAsync(workflows.Count); _uriService.Setup(s => s.GetPageUriString(It.IsAny(), It.IsAny())).Returns(() => "unitTest"); var result = await WorkflowsController.GetList(new PaginationFilter()); diff --git a/tests/UnitTests/WorkflowManager.Tests/Monai.Deploy.WorkflowManager.Tests.csproj b/tests/UnitTests/WorkflowManager.Tests/Monai.Deploy.WorkflowManager.Tests.csproj index 9f2231b8b..c394ae6b6 100644 --- a/tests/UnitTests/WorkflowManager.Tests/Monai.Deploy.WorkflowManager.Tests.csproj +++ b/tests/UnitTests/WorkflowManager.Tests/Monai.Deploy.WorkflowManager.Tests.csproj @@ -23,15 +23,15 @@ - - - - - + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/tests/UnitTests/WorkflowManager.Tests/packages.lock.json b/tests/UnitTests/WorkflowManager.Tests/packages.lock.json index 8a150b66d..dbdc213ad 100644 --- a/tests/UnitTests/WorkflowManager.Tests/packages.lock.json +++ b/tests/UnitTests/WorkflowManager.Tests/packages.lock.json @@ -14,67 +14,67 @@ }, "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": { "type": "Direct", - "requested": "[4.20.70, )", - "resolved": "4.20.70", - "contentHash": "4rNnAwdpXJBuxqrOCzCyICXHSImOTRktCgCWXWykuF1qwoIsVvEnR7PjbMk/eLOxWvhmj5Kwt+kDV3RGUYcNwg==", + "requested": "[4.20.72, )", + "resolved": "4.20.72", + "contentHash": "EA55cjyNn8eTNWrgrdZJH5QLFp2L43oxl1tlkoYUKIE9pRwL784OWiTXeCV5ApS+AMYEAlt7Fo03A2XfouvHmQ==", "dependencies": { "Castle.Core": "5.1.1" } }, "xunit": { "type": "Direct", - "requested": "[2.8.1, )", - "resolved": "2.8.1", - "contentHash": "MLBz2NQp3rtSIoJdjj3DBEr/EeOFlQYF3oCCljat3DY9GQ7yYmtjIAv8Zyfm5BcwYso5sjvIe5scuHaJPVCGIQ==", + "requested": "[2.9.3, )", + "resolved": "2.9.3", + "contentHash": "TlXQBinK35LpOPKHAqbLY4xlEen9TBafjs0V5KnA4wZsoQLQJiirCR4CbIXvOH8NzkW4YeJKP5P/Bnrodm0h9Q==", "dependencies": { - "xunit.analyzers": "1.14.0", - "xunit.assert": "2.8.1", - "xunit.core": "[2.8.1]" + "xunit.analyzers": "1.18.0", + "xunit.assert": "2.9.3", + "xunit.core": "[2.9.3]" } }, "xunit.runner.visualstudio": { "type": "Direct", - "requested": "[2.8.1, )", - "resolved": "2.8.1", - "contentHash": "qBTK0WAcnw65mymIjVDqWUTdqjMyzjwu9e9SF0oGYfYELgbcteDZ4fQLJaXw8mzkvpAD7YdoexBbg8VYQFkWWA==" + "requested": "[3.0.2, )", + "resolved": "3.0.2", + "contentHash": "oXbusR6iPq0xlqoikjdLvzh+wQDkMv9If58myz9MEzldS4nIcp442Btgs2sWbYWV+caEluMe2pQCZ0hUZgPiow==" }, "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" } }, "AutoFixture": { @@ -88,15 +88,15 @@ }, "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": { @@ -109,8 +109,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", @@ -130,19 +130,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" } }, @@ -156,10 +156,10 @@ }, "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.AspNetCore.Hosting.Abstractions": { @@ -200,8 +200,8 @@ }, "Microsoft.AspNetCore.JsonPatch": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "f23867xv+b5Cps3G2WDqjx3JjluLdR/TxfVI9sqk3d1ceQgOSD1WrqrQA66frdd5eQq+uqTGRReq1OQhQqodWQ==", + "resolved": "8.0.14", + "contentHash": "S0ZPiwLvRCYWYz7WTxaTZIyBEYOTPR+Rujdiwz4gUGauWpAhXu846I29xjOTBPX1d5HUcBNlJ46cgDDAev94Gg==", "dependencies": { "Microsoft.CSharp": "4.7.0", "Newtonsoft.Json": "13.0.3" @@ -209,18 +209,18 @@ }, "Microsoft.AspNetCore.Mvc.NewtonsoftJson": { "type": "Transitive", - "resolved": "8.0.6", - "contentHash": "AOoi7cmh2yTVHMNMRYEfAj26NCOur9pd70GSXaDNJvVtD7e/I9UddIkwnj7HAWKtUn2EUOzSKCpt/RZllYiO5w==", + "resolved": "8.0.14", + "contentHash": "322+FAPeMslfd320h8sASJSJ3h5s4dVr6W0xypr28Vz/cbMFjVCLHOou418cc2Xh0kXRzMy3irD3jBzSA+EiDA==", "dependencies": { - "Microsoft.AspNetCore.JsonPatch": "8.0.6", + "Microsoft.AspNetCore.JsonPatch": "8.0.14", "Newtonsoft.Json": "13.0.3", "Newtonsoft.Json.Bson": "1.0.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,8 +229,8 @@ }, "Microsoft.CodeCoverage": { "type": "Transitive", - "resolved": "17.10.0", - "contentHash": "yC7oSlnR54XO5kOuHlVOKtxomNNN1BWXX8lK1G2jaPXT9sUok7kCOoA4Pgs0qyFaCtMrNsprztYMeoEGqCm4uA==" + "resolved": "17.13.0", + "contentHash": "9LIUy0y+DvUmEPtbRDw6Bay3rzwqFV8P4efTrK4CZhQle3M/QwLPjISghfcolmEGAPWxuJi6m98ZEfk4VR4Lfg==" }, "Microsoft.CSharp": { "type": "Transitive", @@ -261,60 +261,59 @@ }, "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.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.Diagnostics": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "3PZp/YSkIXrF7QK7PfC1bkyRYwqOHpWFad8Qx+4wkuumAeXo1NHaxpS9LboNA9OvNSAu+QOVlXbMyoY+pHSqcw==", + "resolved": "8.0.1", + "contentHash": "doVPCUUCY7c6LhBsEfiy3W1bvS7Mi6LkfQMS8nlC22jZWNxBv8VO8bdfeyvpYFst6Kxqk7HBC6lytmEoBssvSQ==", "dependencies": { "Microsoft.Extensions.Configuration": "8.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0" } }, "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", @@ -326,59 +325,59 @@ }, "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": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "cWz4caHwvx0emoYe7NkHPxII/KkTI8R/LC9qdqJqnKv2poTJ4e2qqPGQqvRoQ5kaSA4FU5IV3qFAuLuOhoqULQ==", + "resolved": "8.0.1", + "contentHash": "kDYeKJUzh0qeg/AI+nSr3ffthmXYQTEb0nS9qRC7YhSbbuN4M4NPbaB77AJwtkTnCV9XZ7qYj3dkZaNcyl73EA==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Diagnostics": "8.0.0", - "Microsoft.Extensions.Logging": "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.Diagnostics": "8.0.1", + "Microsoft.Extensions.Logging": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "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" } }, @@ -428,49 +427,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": { @@ -485,23 +484,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" } }, @@ -538,66 +537,66 @@ }, "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" } }, @@ -624,8 +623,8 @@ }, "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" @@ -633,25 +632,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", @@ -660,8 +659,8 @@ }, "MongoDB.Libmongocrypt": { "type": "Transitive", - "resolved": "1.8.2", - "contentHash": "z/8JCULSHM1+mzkau0ivIkU9kIn8JEFFSkmYTSaMaWMMHt96JjUtMKuXxeGNGSnHZ5290ZPKIlQfjoWFk2sKog==" + "resolved": "1.12.0", + "contentHash": "B1X51jrtNacKvxKoaqWeknYeJfQS5aWf6BmVLT5JZerz3AUXFzv8edPskJYqBc3kLy1J2PWzMqqsnyb9g8FtcA==" }, "NETStandard.Library": { "type": "Transitive", @@ -729,39 +728,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", @@ -965,35 +964,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.AppContext": { "type": "Transitive", @@ -1106,8 +1105,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", @@ -1170,11 +1176,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": { @@ -1191,11 +1197,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.Compression": { @@ -1482,8 +1488,8 @@ }, "System.Runtime.CompilerServices.Unsafe": { "type": "Transitive", - "resolved": "6.0.0", - "contentHash": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==" + "resolved": "5.0.0", + "contentHash": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==" }, "System.Runtime.Extensions": { "type": "Transitive", @@ -1718,11 +1724,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.Encoding.Extensions": { "type": "Transitive", @@ -1737,20 +1740,13 @@ }, "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.Text.RegularExpressions": { "type": "Transitive", @@ -1852,15 +1848,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": { @@ -1870,37 +1866,37 @@ }, "xunit.analyzers": { "type": "Transitive", - "resolved": "1.14.0", - "contentHash": "KcFBmV2150xZHPUebV3YLR5gGl8R4wLuPOoxMiwCf1L4bL8ls0dcwtGFzr6NvQRgg6dWgSqbE52I6SYyeB0VnQ==" + "resolved": "1.18.0", + "contentHash": "OtFMHN8yqIcYP9wcVIgJrq01AfTxijjAqVDy/WeQVSyrDC1RzBWeQPztL49DN2syXRah8TYnfvk035s7L95EZQ==" }, "xunit.assert": { "type": "Transitive", - "resolved": "2.8.1", - "contentHash": "DDM18ur+PeNFhQ4w/vO+uvCUy8hA3OS5+AMf/CFov9Wco7Le49zzj0hovRWwa8f/3vaUfjL5r+IkPvqEHu2IIg==" + "resolved": "2.9.3", + "contentHash": "/Kq28fCE7MjOV42YLVRAJzRF0WmEqsmflm0cfpMjGtzQ2lR5mYVj1/i0Y8uDAOLczkL3/jArrwehfMD0YogMAA==" }, "xunit.core": { "type": "Transitive", - "resolved": "2.8.1", - "contentHash": "Ng4Q/DOwotESPl5CufcdqgP6O2KDpdEcIvNfA3upzfCiBrkj5WsmLhf/XUsCVolzvHA7b1WUlyeTo7j1ulG4gQ==", + "resolved": "2.9.3", + "contentHash": "BiAEvqGvyme19wE0wTKdADH+NloYqikiU0mcnmiNyXaF9HyHmE6sr/3DC5vnBkgsWaE6yPyWszKSPSApWdRVeQ==", "dependencies": { - "xunit.extensibility.core": "[2.8.1]", - "xunit.extensibility.execution": "[2.8.1]" + "xunit.extensibility.core": "[2.9.3]", + "xunit.extensibility.execution": "[2.9.3]" } }, "xunit.extensibility.core": { "type": "Transitive", - "resolved": "2.8.1", - "contentHash": "ilfAsxEhpne9AXXf3W+O65mRgGum94m2xHYm1yeJ1m7eiINM6OOwpaHhoNC/KWEQ2u/WF6/XiEs+Q0TOq7hiGA==", + "resolved": "2.9.3", + "contentHash": "kf3si0YTn2a8J8eZNb+zFpwfoyvIrQ7ivNk5ZYA5yuYk1bEtMe4DxJ2CF/qsRgmEnDr7MnW1mxylBaHTZ4qErA==", "dependencies": { "xunit.abstractions": "2.0.3" } }, "xunit.extensibility.execution": { "type": "Transitive", - "resolved": "2.8.1", - "contentHash": "38UnJW+64Wn8QIabujcNEw0HKvWw2AlYCgU8GNwCCDqyrSuRYb7zwetn7SHoHfbL9e9FAvEiAMXmc2wSUY8sVQ==", + "resolved": "2.9.3", + "contentHash": "yMb6vMESlSrE3Wfj7V6cjQ3S4TXdXpRqYeNEI3zsX31uTsGMJjEw6oD5F5u1cHnMptjhEECnmZSsPxB6ChZHDQ==", "dependencies": { - "xunit.extensibility.core": "[2.8.1]" + "xunit.extensibility.core": "[2.9.3]" } }, "ZstdSharp.Port": { @@ -1911,11 +1907,11 @@ "monai.deploy.workflowmanager": { "type": "Project", "dependencies": { - "AspNetCore.HealthChecks.MongoDb": "[8.0.1, )", - "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "[8.0.6, )", - "Monai.Deploy.Messaging.RabbitMQ": "[2.0.3, )", - "Monai.Deploy.Security": "[1.0.0, )", - "Monai.Deploy.Storage.MinIO": "[1.0.1, )", + "AspNetCore.HealthChecks.MongoDb": "[8.1.0, )", + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "[8.0.14, )", + "Monai.Deploy.Messaging.RabbitMQ": "[2.0.4, )", + "Monai.Deploy.Security": "[1.0.1, )", + "Monai.Deploy.Storage.MinIO": "[1.0.2, )", "Monai.Deploy.WorkflowManager.Common.Configuration": "[1.0.0, )", "Monai.Deploy.WorkflowManager.Common.Miscellaneous": "[1.0.0, )", "Monai.Deploy.WorkflowManager.Contracts": "[1.0.0, )", @@ -1925,9 +1921,10 @@ "Monai.Deploy.WorkflowManager.PayloadListener": "[1.0.0, )", "Monai.Deploy.WorkflowManager.Services": "[1.0.0, )", "Mongo.Migration": "[3.1.4, )", - "NLog": "[5.3.2, )", - "NLog.Web.AspNetCore": "[5.3.11, )", - "Swashbuckle.AspNetCore": "[6.6.2, )" + "MongoDB.Driver": "[2.30.0, )", + "NLog": "[5.4.0, )", + "NLog.Web.AspNetCore": "[5.4.0, )", + "Swashbuckle.AspNetCore": "[8.0.0, )" } }, "monai.deploy.workflowmanager.common": { @@ -1942,15 +1939,15 @@ "monai.deploy.workflowmanager.common.configuration": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.3, )", - "Monai.Deploy.Storage": "[1.0.1, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )" } }, "monai.deploy.workflowmanager.common.miscellaneous": { "type": "Project", "dependencies": { "Monai.Deploy.WorkflowManager.Common.Configuration": "[1.0.0, )", - "fo-dicom": "[5.1.2, )" + "fo-dicom": "[5.2.1, )" } }, "monai.deploy.workflowmanager.conditionsresolver": { @@ -1965,9 +1962,9 @@ "monai.deploy.workflowmanager.contracts": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.3, )", + "Monai.Deploy.Messaging": "[2.0.4, )", "Mongo.Migration": "[3.1.4, )", - "MongoDB.Bson": "[2.25.0, )" + "MongoDB.Bson": "[2.23.1, )" } }, "monai.deploy.workflowmanager.database": { @@ -1976,7 +1973,7 @@ "Monai.Deploy.WorkflowManager.Contracts": "[1.0.0, )", "Monai.Deploy.WorkflowManager.Logging": "[1.0.0, )", "Mongo.Migration": "[3.1.4, )", - "MongoDB.Driver": "[2.25.0, )" + "MongoDB.Driver": "[2.30.0, )" } }, "monai.deploy.workflowmanager.logging": { @@ -2005,7 +2002,7 @@ "monai.deploy.workflowmanager.services": { "type": "Project", "dependencies": { - "Microsoft.Extensions.Http": "[8.0.0, )", + "Microsoft.Extensions.Http": "[8.0.1, )", "Monai.Deploy.WorkflowManager.Common": "[1.0.0, )", "Monai.Deploy.WorkflowManager.Common.Configuration": "[1.0.0, )" } @@ -2013,7 +2010,7 @@ "monai.deploy.workflowmanager.storage": { "type": "Project", "dependencies": { - "Monai.Deploy.Storage": "[1.0.1, )", + "Monai.Deploy.Storage": "[1.0.2, )", "Monai.Deploy.WorkflowManager.Contracts": "[1.0.0, )", "Monai.Deploy.WorkflowManager.Logging": "[1.0.0, )" } @@ -2021,7 +2018,7 @@ "monai.deploy.workloadmanager.workflowexecuter": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.3, )", + "Monai.Deploy.Messaging": "[2.0.4, )", "Monai.Deploy.WorkflowManager.Common": "[1.0.0, )", "Monai.Deploy.WorkflowManager.Common.Configuration": "[1.0.0, )", "Monai.Deploy.WorkflowManager.Common.Miscellaneous": "[1.0.0, )",