diff --git a/.github/.gitversion.yml b/.github/.gitversion.yml index 82cf8c26a..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.1.5 +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 fc97d3230..cd334a125 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@v0.10.2 + 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 @@ -226,12 +228,12 @@ jobs: msg: ${{ github.repository }} - name: Install GitReleaseManager - uses: gittools/actions/gitreleasemanager/setup@v0.10.2 + uses: gittools/actions/gitreleasemanager/setup@v3.1.11 with: - versionSpec: "0.13.x" + versionSpec: '0.18.x' - name: Create release with GitReleaseManager - uses: gittools/actions/gitreleasemanager/create@v0.10.2 + uses: gittools/actions/gitreleasemanager/create@v3.1.11 with: token: ${{ secrets.GITHUB_TOKEN }} owner: ${{ steps.repo.outputs._0 }} @@ -242,7 +244,7 @@ jobs: artifacts/mwm-docs-${{ env.SEMVER }}.zip - name: Publish release with GitReleaseManager - uses: gittools/actions/gitreleasemanager/publish@v0.10.2 + uses: gittools/actions/gitreleasemanager/publish@v3.1.11 if: ${{ contains(github.ref, 'refs/heads/main') }} with: token: ${{ secrets.GITHUB_TOKEN }} @@ -251,7 +253,7 @@ jobs: tagName: ${{ env.MAJORMINORPATCH }} - name: Close release with GitReleaseManager - uses: gittools/actions/gitreleasemanager/close@v0.10.2 + uses: gittools/actions/gitreleasemanager/close@v3.1.11 if: ${{ contains(github.ref, 'refs/heads/main') }} with: token: ${{ secrets.GITHUB_TOKEN }} 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 b135efc91..5d9f26385 100644 --- a/doc/dependency_decisions.yml +++ b/doc/dependency_decisions.yml @@ -4,6 +4,7 @@ - :versions: - 3.7.100.14 - 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) @@ -19,6 +20,7 @@ - :versions: - 3.7.100.14 - 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) @@ -26,6 +28,7 @@ - Ardalis.GuardClauses - :versions: - 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) @@ -33,6 +36,7 @@ - AspNetCore.HealthChecks.MongoDb - :versions: - 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,10 +106,11 @@ - 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: @@ -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) @@ -199,6 +206,7 @@ - Microsoft.AspNetCore.JsonPatch - :versions: - 8.0.0 + - 8.0.14 :when: 2022-10-14 23:36:54.037540738 Z :who: mocsharp :why: Apache-2.0 @@ -207,6 +215,7 @@ - Microsoft.AspNetCore.Mvc.NewtonsoftJson - :versions: - 8.0.0 + - 8.0.14 :when: 2022-10-14 23:36:55.184068414 Z :who: mocsharp :why: Apache-2.0 @@ -215,6 +224,7 @@ - Microsoft.AspNetCore.Mvc.Testing - :versions: - 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) @@ -223,6 +233,7 @@ - :versions: - 6.0.22 - 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) @@ -252,6 +263,8 @@ - Microsoft.CodeCoverage - :versions: - 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) @@ -266,6 +279,7 @@ - Microsoft.Extensions.ApiDescription.Client - :versions: - 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,6 +358,7 @@ - 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) @@ -347,6 +366,7 @@ - Microsoft.Extensions.DependencyInjection.Abstractions - :versions: - 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,6 +391,7 @@ - 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) @@ -376,6 +399,7 @@ - Microsoft.Extensions.Diagnostics.HealthChecks - :versions: - 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) @@ -383,6 +407,7 @@ - Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - :versions: - 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,7 +463,7 @@ - 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) @@ -443,6 +471,7 @@ - Microsoft.Extensions.Logging.Abstractions - :versions: - 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) @@ -496,6 +530,7 @@ - Microsoft.Extensions.Options - :versions: - 8.0.0 + - 8.0.2 :when: 2022-08-16T21:39:46.980Z :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -519,6 +554,7 @@ - :versions: - 7.0.0 - 7.0.3 + - 7.1.2 :when: 2022-10-14T23:37:14.398Z :who: mocsharp :why: MIT @@ -528,6 +564,7 @@ - :versions: - 7.0.0 - 7.0.3 + - 7.1.2 :when: 2022-10-14T23:37:14.398Z :who: mocsharp :why: MIT @@ -537,6 +574,7 @@ - :versions: - 7.0.0 - 7.0.3 + - 7.1.2 :when: 2022-10-14T23:37:15.196Z :who: mocsharp :why: MIT @@ -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 @@ -562,6 +602,7 @@ - :versions: - 7.0.0 - 7.0.3 + - 7.1.2 :when: 2022-10-14T23:37:16.793Z :who: mocsharp :why: MIT @@ -570,6 +611,8 @@ - Microsoft.NET.Test.Sdk - :versions: - 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) @@ -595,6 +638,7 @@ - Microsoft.OpenApi - :versions: - 1.2.3 + - 1.6.23 :when: 2022-08-16T23:06:15.708Z :who: mocsharp :why: MIT ( @@ -603,6 +647,8 @@ - Microsoft.TestPlatform.ObjectModel - :versions: - 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) @@ -610,6 +656,8 @@ - Microsoft.TestPlatform.TestHost - :versions: - 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) @@ -632,6 +680,7 @@ - Minio - :versions: - 6.0.1 + - 6.0.2 :when: 2022-08-16T18:11:34.443Z :who: mocsharp :why: Apache-2.0 (https://github.com/minio/minio-dotnet/raw/master/LICENSE) @@ -639,6 +688,7 @@ - Monai.Deploy.Messaging - :versions: - 2.0.2 + - 2.0.4 :when: 2023-10-13T18:06:21.511Z :who: neilsouth :why: Apache-2.0 @@ -647,14 +697,25 @@ - Monai.Deploy.Messaging.RabbitMQ - :versions: - 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.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 @@ -663,6 +724,7 @@ - Monai.Deploy.Storage.MinIO - :versions: - 1.0.0 + - 1.0.2 :when: 2022-08-16T23:06:22.426Z :who: mocsharp :why: Apache-2.0 @@ -671,18 +733,11 @@ - Monai.Deploy.Storage.S3Policy - :versions: - 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: @@ -694,6 +749,7 @@ - MongoDB.Bson - :versions: - 2.23.1 + - 2.30.0 :when: 2022-11-16T23:38:53.891Z :who: mocsharp :why: Apache-2.0 @@ -703,6 +759,7 @@ - :versions: - 2.13.1 - 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) @@ -712,21 +769,16 @@ - 2.13.1 - 2.21.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.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) @@ -758,6 +811,7 @@ - :versions: - 4.7.11 - 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) @@ -765,6 +819,7 @@ - NLog.Extensions.Logging - :versions: - 5.3.8 + - 5.4.0 :when: 2022-10-12T03:14:06.964Z :who: mocsharp :why: BSD 2-Clause Simplified License @@ -773,6 +828,7 @@ - NLog.Web.AspNetCore - :versions: - 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) @@ -780,13 +836,15 @@ - NUnit - :versions: - 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) @@ -816,6 +874,7 @@ - :versions: - 8.2.0 - 8.2.1 + - 8.5.2 :when: 2022-11-09T18:57:32.294Z :who: mocsharp :why: MIT ( https://licenses.nuget.org/MIT) @@ -824,6 +883,7 @@ - :versions: - 8.2.0 - 8.2.1 + - 8.5.2 :when: 2022-11-09T18:57:32.294Z :who: mocsharp :why: MIT ( https://licenses.nuget.org/MIT) @@ -905,6 +965,7 @@ - Snapshooter - :versions: - 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) @@ -912,6 +973,7 @@ - Snapshooter.NUnit - :versions: - 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: @@ -967,6 +1029,7 @@ - Swashbuckle.AspNetCore - :versions: - 6.5.0 + - 8.0.0 :when: 2022-10-14 23:37:40.252385824 Z :who: mocsharp :why: MIT @@ -975,6 +1038,7 @@ - Swashbuckle.AspNetCore.Swagger - :versions: - 6.5.0 + - 8.0.0 :when: 2022-10-14 23:37:40.616726128 Z :who: mocsharp :why: MIT @@ -983,6 +1047,7 @@ - Swashbuckle.AspNetCore.SwaggerGen - :versions: - 6.5.0 + - 8.0.0 :when: 2022-10-14 23:37:41.040002310 Z :who: mocsharp :why: MIT @@ -991,6 +1056,7 @@ - Swashbuckle.AspNetCore.SwaggerUI - :versions: - 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) @@ -1153,16 +1221,16 @@ - - :approve - System.IO.Abstractions - :versions: - - 20.0.4 - :when: 2022-12-14T12:28:00.728Z - :who: samrooke + - 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: - - 20.0.4 - :when: 2022-12-14T12:28:00.728Z - :who: samrooke + - 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 @@ -1201,9 +1269,9 @@ - - :approve - System.IO.Hashing - :versions: - - 7.0.0 - :when: 2023-8-18 08:53:55.295846123 Z - :who: nsouth + - 8.0.0 + :when: 2022-08-16T21:40:24.434Z + :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) - - :approve - System.IO.Pipelines @@ -1216,11 +1284,10 @@ - System.IdentityModel.Tokens.Jwt - :versions: - 7.0.0 - - 7.0.3 - :when: 2022-10-14 23:37:56.206982078 Z + - 7.1.2 + :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: @@ -1331,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: @@ -1524,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 @@ -1553,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) @@ -1646,42 +1716,38 @@ - - :approve - TestableIO.System.IO.Abstractions - :versions: - - 20.0.4 + - 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: - - 20.0.4 + - 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: - - 20.0.4 + - 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 + - Testably.Abstractions.FileSystem.Interface - :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 + - 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.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) @@ -1689,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 @@ -1844,6 +1911,7 @@ - xunit - :versions: - 2.7.0 + - 2.9.3 :when: 2022-08-16T21:40:29.166Z :who: mocsharp :why: Apache-2.0 ( @@ -1860,6 +1928,7 @@ - xunit.analyzers - :versions: - 1.11.0 + - 1.18.0 :when: 2022-08-16T21:40:30.047Z :who: mocsharp :why: Apache-2.0 ( @@ -1868,6 +1937,7 @@ - xunit.assert - :versions: - 2.7.0 + - 2.9.3 :when: 2022-08-16T21:40:30.526Z :who: mocsharp :why: Apache-2.0 ( @@ -1876,6 +1946,7 @@ - xunit.core - :versions: - 2.7.0 + - 2.9.3 :when: 2022-08-16T21:40:30.973Z :who: mocsharp :why: Apache-2.0 ( @@ -1884,6 +1955,7 @@ - xunit.extensibility.core - :versions: - 2.7.0 + - 2.9.3 :when: 2022-08-16T21:40:31.401Z :who: mocsharp :why: Apache-2.0 ( @@ -1892,6 +1964,7 @@ - xunit.extensibility.execution - :versions: - 2.7.0 + - 2.9.3 :when: 2022-08-16T21:40:31.845Z :who: mocsharp :why: Apache-2.0 ( @@ -1900,6 +1973,28 @@ - xunit.runner.visualstudio - :versions: - 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 7694f0339..6aa46eadc 100644 --- a/docs/compliance/third-party-licenses.md +++ b/docs/compliance/third-party-licenses.md @@ -205,6 +205,78 @@ 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) + + +``` +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.S3 3.7.305.4 @@ -424,6 +496,78 @@ END OF TERMS AND CONDITIONS
+
+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 @@ -463,6 +607,45 @@ 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.6.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. +``` + +
+ +
AspNetCore.HealthChecks.MongoDb 8.0.0 @@ -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 +AspNetCore.HealthChecks.MongoDb 8.1.0 -## 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 +## 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,216 @@ 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) + + +``` +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. +``` + +
+ + +
+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) ``` @@ -1988,28 +2641,25 @@ third-party archives. ``` -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 @@ -2823,6 +3473,47 @@ SOFTWARE.
+
+Microsoft.AspNetCore.Authentication.JwtBearer 8.0.14 + +## Microsoft.AspNetCore.Authentication.JwtBearer + +- Version: 8.0.14 +- Authors: Microsoft +- Project URL: https://asp.net/ +- 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. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION 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.Abstractions 2.2.0 @@ -2988,14 +3679,14 @@ specific language governing permissions and limitations under the License.
-Microsoft.AspNetCore.Mvc.NewtonsoftJson 8.0.0 +Microsoft.AspNetCore.JsonPatch 8.0.14 -## Microsoft.AspNetCore.Mvc.NewtonsoftJson +## Microsoft.AspNetCore.JsonPatch -- Version: 8.0.0 +- Version: 8.0.14 - Authors: Microsoft - Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.Mvc.NewtonsoftJson/8.0.0) +- 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) @@ -3020,96 +3711,78 @@ specific language governing permissions and limitations under the License.
-Microsoft.AspNetCore.Mvc.Testing 8.0.0 +Microsoft.AspNetCore.Mvc.NewtonsoftJson 8.0.0 -## Microsoft.AspNetCore.Mvc.Testing +## Microsoft.AspNetCore.Mvc.NewtonsoftJson - Version: 8.0.0 - Authors: Microsoft - Project URL: https://asp.net/ -- 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) +- 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) ``` -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: +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 -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + http://www.apache.org/licenses/LICENSE-2.0 -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 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. ```
-Microsoft.AspNetCore.TestHost 6.0.22 +Microsoft.AspNetCore.Mvc.NewtonsoftJson 8.0.14 -## Microsoft.AspNetCore.TestHost +## Microsoft.AspNetCore.Mvc.NewtonsoftJson -- Version: 6.0.22 +- Version: 8.0.14 - Authors: Microsoft - Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.TestHost/6.0.22) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) +- 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. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +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 -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + http://www.apache.org/licenses/LICENSE-2.0 -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 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. ```
-Microsoft.AspNetCore.TestHost 8.0.0 +Microsoft.AspNetCore.Mvc.Testing 8.0.0 -## Microsoft.AspNetCore.TestHost +## Microsoft.AspNetCore.Mvc.Testing - Version: 8.0.0 - Authors: Microsoft - Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.TestHost/8.0.0) +- 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) @@ -3143,14 +3816,14 @@ SOFTWARE.
-Microsoft.Bcl.AsyncInterfaces 6.0.0 +Microsoft.AspNetCore.Mvc.Testing 8.0.14 -## Microsoft.Bcl.AsyncInterfaces +## Microsoft.AspNetCore.Mvc.Testing -- Version: 6.0.0 +- Version: 8.0.14 - Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/6.0.0) +- 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) @@ -3184,14 +3857,14 @@ SOFTWARE.
-Microsoft.Bcl.AsyncInterfaces 8.0.0 +Microsoft.AspNetCore.TestHost 6.0.22 -## Microsoft.Bcl.AsyncInterfaces +## Microsoft.AspNetCore.TestHost -- Version: 8.0.0 +- Version: 6.0.22 - Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/8.0.0) +- Project URL: https://asp.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.TestHost/6.0.22) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -3225,15 +3898,14 @@ SOFTWARE.
-Microsoft.Bcl.HashCode 1.1.1 +Microsoft.AspNetCore.TestHost 8.0.0 -## Microsoft.Bcl.HashCode +## Microsoft.AspNetCore.TestHost -- Version: 1.1.1 +- Version: 8.0.0 - Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://github.com/dotnet/corefx -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Bcl.HashCode/1.1.1) +- Project URL: https://asp.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.TestHost/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -3267,15 +3939,14 @@ SOFTWARE.
-Microsoft.CSharp 4.7.0 +Microsoft.AspNetCore.TestHost 8.0.14 -## Microsoft.CSharp +## Microsoft.AspNetCore.TestHost -- Version: 4.7.0 +- Version: 8.0.14 - Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://github.com/dotnet/corefx -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.CSharp/4.7.0) +- 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,21 +3980,21 @@ SOFTWARE.
-Microsoft.CodeCoverage 17.8.0 +Microsoft.Bcl.AsyncInterfaces 6.0.0 -## Microsoft.CodeCoverage +## Microsoft.Bcl.AsyncInterfaces -- Version: 17.8.0 +- Version: 6.0.0 - Authors: Microsoft -- Project URL: https://github.com/microsoft/vstest -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.CodeCoverage/17.8.0) -- License: [MIT](https://github.com/microsoft/vstest/raw/main/LICENSE) +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/6.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. @@ -3350,14 +4021,14 @@ SOFTWARE.
-Microsoft.DotNet.PlatformAbstractions 1.0.3 +Microsoft.Bcl.AsyncInterfaces 8.0.0 -## Microsoft.DotNet.PlatformAbstractions +## Microsoft.Bcl.AsyncInterfaces -- 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) +- Version: 8.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -3391,15 +4062,16 @@ SOFTWARE.
-Microsoft.Extensions.ApiDescription.Client 8.0.0 +Microsoft.Bcl.HashCode 1.1.1 -## Microsoft.Extensions.ApiDescription.Client +## Microsoft.Bcl.HashCode -- Version: 8.0.0 +- Version: 1.1.1 - Authors: Microsoft -- Project URL: https://asp.net/ -- 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) +- Owners: microsoft,dotnetframework +- Project URL: https://github.com/dotnet/corefx +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Bcl.HashCode/1.1.1) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) ``` @@ -3432,15 +4104,16 @@ SOFTWARE.
-Microsoft.Extensions.ApiDescription.Server 6.0.5 +Microsoft.CSharp 4.7.0 -## Microsoft.Extensions.ApiDescription.Server +## Microsoft.CSharp -- Version: 6.0.5 +- Version: 4.7.0 - Authors: Microsoft -- 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) +- Owners: microsoft,dotnetframework +- Project URL: https://github.com/dotnet/corefx +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.CSharp/4.7.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) ``` @@ -3473,22 +4146,21 @@ SOFTWARE.
-Microsoft.Extensions.Configuration 2.2.0 +Microsoft.CodeCoverage 17.8.0 -## Microsoft.Extensions.Configuration +## Microsoft.CodeCoverage -- Version: 2.2.0 +- Version: 17.8.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) +- Project URL: https://github.com/microsoft/vstest +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.CodeCoverage/17.8.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. @@ -3515,21 +4187,21 @@ SOFTWARE.
-Microsoft.Extensions.Configuration 8.0.0 +Microsoft.CodeCoverage 17.13.0 -## Microsoft.Extensions.Configuration +## Microsoft.CodeCoverage -- Version: 8.0.0 +- Version: 17.13.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) +- 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. @@ -3556,21 +4228,21 @@ SOFTWARE.
-Microsoft.Extensions.Configuration.Abstractions 8.0.0 +Microsoft.CodeCoverage 17.14.0-preview-25107-01 -## Microsoft.Extensions.Configuration.Abstractions +## Microsoft.CodeCoverage -- Version: 8.0.0 +- Version: 17.14.0-preview-25107-01 - Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Abstractions/8.0.0) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) +- Project URL: https://github.com/microsoft/vstest +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.CodeCoverage/17.14.0-preview-25107-01) +- 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. @@ -3597,15 +4269,14 @@ SOFTWARE.
-Microsoft.Extensions.Configuration.Binder 2.2.0 +Microsoft.DotNet.PlatformAbstractions 1.0.3 -## Microsoft.Extensions.Configuration.Binder +## Microsoft.DotNet.PlatformAbstractions -- Version: 2.2.0 -- Authors: Microsoft -- Owners: Microsoft -- Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Binder/2.2.0) +- 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) @@ -3639,15 +4310,15 @@ SOFTWARE.
-Microsoft.Extensions.Configuration.Binder 8.0.0 +Microsoft.Extensions.ApiDescription.Client 8.0.0 -## Microsoft.Extensions.Configuration.Binder +## Microsoft.Extensions.ApiDescription.Client - Version: 8.0.0 - Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Binder/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.Client/8.0.0) +- License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) ``` @@ -3680,15 +4351,15 @@ SOFTWARE.
-Microsoft.Extensions.Configuration.CommandLine 8.0.0 +Microsoft.Extensions.ApiDescription.Client 8.0.14 -## Microsoft.Extensions.Configuration.CommandLine +## Microsoft.Extensions.ApiDescription.Client -- Version: 8.0.0 +- Version: 8.0.14 - Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.CommandLine/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.Client/8.0.14) +- License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) ``` @@ -3721,15 +4392,15 @@ SOFTWARE.
-Microsoft.Extensions.Configuration.EnvironmentVariables 8.0.0 +Microsoft.Extensions.ApiDescription.Server 6.0.5 -## Microsoft.Extensions.Configuration.EnvironmentVariables +## 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.EnvironmentVariables/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) ``` @@ -3762,14 +4433,15 @@ SOFTWARE.
-Microsoft.Extensions.Configuration.FileExtensions 8.0.0 +Microsoft.Extensions.Configuration 2.2.0 -## Microsoft.Extensions.Configuration.FileExtensions +## Microsoft.Extensions.Configuration -- Version: 8.0.0 +- Version: 2.2.0 - Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.FileExtensions/8.0.0) +- 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) @@ -3803,14 +4475,14 @@ SOFTWARE.
-Microsoft.Extensions.Configuration.Json 8.0.0 +Microsoft.Extensions.Configuration 8.0.0 -## Microsoft.Extensions.Configuration.Json +## Microsoft.Extensions.Configuration - Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Json/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -3844,14 +4516,14 @@ SOFTWARE.
-Microsoft.Extensions.Configuration.UserSecrets 8.0.0 +Microsoft.Extensions.Configuration.Abstractions 8.0.0 -## Microsoft.Extensions.Configuration.UserSecrets +## Microsoft.Extensions.Configuration.Abstractions - Version: 8.0.0 - 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.Abstractions/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -3885,15 +4557,15 @@ SOFTWARE.
-Microsoft.Extensions.DependencyInjection 2.2.0 +Microsoft.Extensions.Configuration.Binder 2.2.0 -## Microsoft.Extensions.DependencyInjection +## Microsoft.Extensions.Configuration.Binder - Version: 2.2.0 - Authors: Microsoft - Owners: Microsoft - Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/2.2.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Binder/2.2.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -3927,14 +4599,14 @@ SOFTWARE.
-Microsoft.Extensions.DependencyInjection 6.0.1 +Microsoft.Extensions.Configuration.Binder 8.0.0 -## Microsoft.Extensions.DependencyInjection +## Microsoft.Extensions.Configuration.Binder -- Version: 6.0.1 +- Version: 8.0.0 - 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.Binder/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -3968,14 +4640,14 @@ SOFTWARE.
-Microsoft.Extensions.DependencyInjection 8.0.0 +Microsoft.Extensions.Configuration.Binder 8.0.2 -## Microsoft.Extensions.DependencyInjection +## Microsoft.Extensions.Configuration.Binder -- Version: 8.0.0 +- Version: 8.0.2 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/8.0.0) +- 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) @@ -4009,14 +4681,14 @@ SOFTWARE.
-Microsoft.Extensions.DependencyInjection.Abstractions 8.0.0 +Microsoft.Extensions.Configuration.CommandLine 8.0.0 -## Microsoft.Extensions.DependencyInjection.Abstractions +## Microsoft.Extensions.Configuration.CommandLine - Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.CommandLine/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4050,14 +4722,14 @@ SOFTWARE.
-Microsoft.Extensions.DependencyModel 1.0.3 +Microsoft.Extensions.Configuration.EnvironmentVariables 8.0.0 -## Microsoft.Extensions.DependencyModel +## Microsoft.Extensions.Configuration.EnvironmentVariables -- 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.Configuration.EnvironmentVariables/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4091,14 +4763,14 @@ SOFTWARE.
-Microsoft.Extensions.DependencyModel 8.0.0 +Microsoft.Extensions.Configuration.FileExtensions 8.0.0 -## Microsoft.Extensions.DependencyModel +## Microsoft.Extensions.Configuration.FileExtensions - Version: 8.0.0 - 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.Configuration.FileExtensions/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4132,15 +4804,15 @@ SOFTWARE.
-Microsoft.Extensions.Diagnostics 8.0.0 +Microsoft.Extensions.Configuration.FileExtensions 8.0.1 -## Microsoft.Extensions.Diagnostics +## Microsoft.Extensions.Configuration.FileExtensions -- Version: 8.0.0 +- Version: 8.0.1 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Diagnostics/8.0.0) -- License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) +- 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) ``` @@ -4173,15 +4845,15 @@ SOFTWARE.
-Microsoft.Extensions.Diagnostics.Abstractions 8.0.0 +Microsoft.Extensions.Configuration.Json 8.0.0 -## Microsoft.Extensions.Diagnostics.Abstractions +## Microsoft.Extensions.Configuration.Json - Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Diagnostics.Abstractions/8.0.0) -- License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Json/8.0.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) ``` @@ -4214,15 +4886,15 @@ SOFTWARE.
-Microsoft.Extensions.Diagnostics.HealthChecks 8.0.0 +Microsoft.Extensions.Configuration.Json 8.0.1 -## Microsoft.Extensions.Diagnostics.HealthChecks +## Microsoft.Extensions.Configuration.Json -- Version: 8.0.0 +- Version: 8.0.1 - Authors: Microsoft -- Project URL: https://asp.net/ -- 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) +- Project URL: https://dot.net/ +- 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) ``` @@ -4255,15 +4927,15 @@ SOFTWARE.
-Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.0 +Microsoft.Extensions.Configuration.UserSecrets 8.0.0 -## Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions +## Microsoft.Extensions.Configuration.UserSecrets - 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) +- 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) ``` @@ -4296,14 +4968,14 @@ SOFTWARE.
-Microsoft.Extensions.FileProviders.Abstractions 8.0.0 +Microsoft.Extensions.Configuration.UserSecrets 8.0.1 -## Microsoft.Extensions.FileProviders.Abstractions +## Microsoft.Extensions.Configuration.UserSecrets -- Version: 8.0.0 +- Version: 8.0.1 - 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.Configuration.UserSecrets/8.0.1) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4337,14 +5009,15 @@ SOFTWARE.
-Microsoft.Extensions.FileProviders.Physical 8.0.0 +Microsoft.Extensions.DependencyInjection 2.2.0 -## Microsoft.Extensions.FileProviders.Physical +## 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.FileProviders.Physical/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) @@ -4378,14 +5051,14 @@ SOFTWARE.
-Microsoft.Extensions.FileSystemGlobbing 8.0.0 +Microsoft.Extensions.DependencyInjection 6.0.1 -## Microsoft.Extensions.FileSystemGlobbing +## Microsoft.Extensions.DependencyInjection -- Version: 8.0.0 +- Version: 6.0.1 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.FileSystemGlobbing/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/6.0.1) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4419,14 +5092,14 @@ SOFTWARE.
-Microsoft.Extensions.Hosting 8.0.0 +Microsoft.Extensions.DependencyInjection 8.0.0 -## Microsoft.Extensions.Hosting +## Microsoft.Extensions.DependencyInjection - Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Hosting/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4460,14 +5133,14 @@ SOFTWARE.
-Microsoft.Extensions.Hosting.Abstractions 8.0.0 +Microsoft.Extensions.DependencyInjection 8.0.1 -## Microsoft.Extensions.Hosting.Abstractions +## 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.Hosting.Abstractions/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) @@ -4501,15 +5174,14 @@ SOFTWARE.
-Microsoft.Extensions.Http 3.1.0 +Microsoft.Extensions.DependencyInjection.Abstractions 8.0.0 -## Microsoft.Extensions.Http +## Microsoft.Extensions.DependencyInjection.Abstractions -- 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) +- Project URL: https://dot.net/ +- 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) @@ -4543,14 +5215,14 @@ SOFTWARE.
-Microsoft.Extensions.Http 8.0.0 +Microsoft.Extensions.DependencyInjection.Abstractions 8.0.2 -## Microsoft.Extensions.Http +## 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.Http/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4584,15 +5256,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging 2.2.0 +Microsoft.Extensions.DependencyModel 1.0.3 -## Microsoft.Extensions.Logging +## Microsoft.Extensions.DependencyModel -- Version: 2.2.0 -- Authors: Microsoft -- Owners: Microsoft -- Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging/2.2.0) +- 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) @@ -4626,14 +5297,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging 6.0.0 +Microsoft.Extensions.DependencyModel 8.0.0 -## Microsoft.Extensions.Logging +## Microsoft.Extensions.DependencyModel -- 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.DependencyModel/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4667,14 +5338,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging 8.0.0 +Microsoft.Extensions.DependencyModel 8.0.2 -## Microsoft.Extensions.Logging +## Microsoft.Extensions.DependencyModel -- Version: 8.0.0 +- Version: 8.0.2 - 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.DependencyModel/8.0.2) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -4708,15 +5379,15 @@ SOFTWARE.
-Microsoft.Extensions.Logging 8.0.0 +Microsoft.Extensions.Diagnostics 8.0.0 -## Microsoft.Extensions.Logging +## Microsoft.Extensions.Diagnostics - Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging/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) ``` @@ -4749,15 +5420,56 @@ SOFTWARE.
-Microsoft.Extensions.Logging.Abstractions 8.0.0 +Microsoft.Extensions.Diagnostics 8.0.1 -## Microsoft.Extensions.Logging.Abstractions +## Microsoft.Extensions.Diagnostics + +- Version: 8.0.1 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Diagnostics/8.0.1) +- License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+Microsoft.Extensions.Diagnostics.Abstractions 8.0.0 + +## Microsoft.Extensions.Diagnostics.Abstractions - Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.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.0) +- License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) ``` @@ -4790,16 +5502,15 @@ SOFTWARE.
-Microsoft.Extensions.Logging.Configuration 2.2.0 +Microsoft.Extensions.Diagnostics.Abstractions 8.0.1 -## Microsoft.Extensions.Logging.Configuration +## Microsoft.Extensions.Diagnostics.Abstractions -- 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.Configuration/2.2.0) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Diagnostics.Abstractions/8.0.1) +- License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) ``` @@ -4832,15 +5543,15 @@ SOFTWARE.
-Microsoft.Extensions.Logging.Configuration 8.0.0 +Microsoft.Extensions.Diagnostics.HealthChecks 8.0.0 -## Microsoft.Extensions.Logging.Configuration +## Microsoft.Extensions.Diagnostics.HealthChecks - 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) -- 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.Diagnostics.HealthChecks/8.0.0) +- License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) ``` @@ -4873,16 +5584,15 @@ SOFTWARE.
-Microsoft.Extensions.Logging.Console 2.2.0 +Microsoft.Extensions.Diagnostics.HealthChecks 8.0.14 -## Microsoft.Extensions.Logging.Console +## Microsoft.Extensions.Diagnostics.HealthChecks -- 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.Logging.Console/2.2.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.14) +- License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) ``` @@ -4915,15 +5625,15 @@ SOFTWARE.
-Microsoft.Extensions.Logging.Console 8.0.0 +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.0 -## Microsoft.Extensions.Logging.Console +## Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - Version: 8.0.0 - Authors: Microsoft -- 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) +- 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) ``` @@ -4956,16 +5666,15 @@ SOFTWARE.
-Microsoft.Extensions.Logging.Debug 2.2.0 +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 8.0.14 -## Microsoft.Extensions.Logging.Debug +## Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions -- 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.Logging.Debug/2.2.0) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) +- 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) ``` @@ -4998,14 +5707,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging.Debug 8.0.0 +Microsoft.Extensions.FileProviders.Abstractions 8.0.0 -## Microsoft.Extensions.Logging.Debug +## Microsoft.Extensions.FileProviders.Abstractions - 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.FileProviders.Abstractions/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -5039,14 +5748,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging.EventLog 8.0.0 +Microsoft.Extensions.FileProviders.Physical 8.0.0 -## Microsoft.Extensions.Logging.EventLog +## Microsoft.Extensions.FileProviders.Physical - Version: 8.0.0 - 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.FileProviders.Physical/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -5080,14 +5789,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging.EventSource 8.0.0 +Microsoft.Extensions.FileSystemGlobbing 8.0.0 -## Microsoft.Extensions.Logging.EventSource +## Microsoft.Extensions.FileSystemGlobbing - 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.FileSystemGlobbing/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -5121,46 +5830,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.Options 8.0.0 +Microsoft.Extensions.Hosting 8.0.0 -## Microsoft.Extensions.Options +## Microsoft.Extensions.Hosting - Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Options/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) @@ -5194,16 +5871,15 @@ SOFTWARE.
-Microsoft.Extensions.Options.ConfigurationExtensions 2.2.0 +Microsoft.Extensions.Hosting 8.0.1 -## Microsoft.Extensions.Options.ConfigurationExtensions +## Microsoft.Extensions.Hosting -- 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.Options.ConfigurationExtensions/2.2.0) -- License: [Apache-2.0](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) +- 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) ``` @@ -5236,15 +5912,15 @@ SOFTWARE.
-Microsoft.Extensions.Options.ConfigurationExtensions 8.0.0 +Microsoft.Extensions.Hosting.Abstractions 8.0.0 -## Microsoft.Extensions.Options.ConfigurationExtensions +## Microsoft.Extensions.Hosting.Abstractions - 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.Hosting.Abstractions/8.0.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) ``` @@ -5277,14 +5953,14 @@ SOFTWARE.
-Microsoft.Extensions.Options.ConfigurationExtensions 8.0.0 +Microsoft.Extensions.Hosting.Abstractions 8.0.1 -## Microsoft.Extensions.Options.ConfigurationExtensions +## Microsoft.Extensions.Hosting.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.Options.ConfigurationExtensions/8.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Hosting.Abstractions/8.0.1) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -5318,14 +5994,15 @@ SOFTWARE.
-Microsoft.Extensions.Primitives 8.0.0 +Microsoft.Extensions.Http 3.1.0 -## Microsoft.Extensions.Primitives +## Microsoft.Extensions.Http -- Version: 8.0.0 +- Version: 3.1.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.Http/3.1.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -5359,60 +6036,23 @@ SOFTWARE.
-Microsoft.IdentityModel.Abstractions 7.0.0 +Microsoft.Extensions.Http 8.0.0 -## Microsoft.IdentityModel.Abstractions +## Microsoft.Extensions.Http -- 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.Http/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.0.3 - -## Microsoft.IdentityModel.Abstractions - -- Version: 7.0.3 -- Authors: Microsoft -- Project URL: https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.IdentityModel.Abstractions/7.0.3) -- License: [MIT](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) - - -``` -The MIT License (MIT) +Copyright (c) .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,21 +6077,23 @@ SOFTWARE.
-Microsoft.IdentityModel.JsonWebTokens 7.0.0 +Microsoft.Extensions.Http 8.0.1 -## Microsoft.IdentityModel.JsonWebTokens +## Microsoft.Extensions.Http -- 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.Http/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 @@ -5476,21 +6118,24 @@ SOFTWARE.
-Microsoft.IdentityModel.JsonWebTokens 7.0.3 +Microsoft.Extensions.Logging 2.2.0 -## Microsoft.IdentityModel.JsonWebTokens +## Microsoft.Extensions.Logging -- Version: 7.0.3 +- 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.JsonWebTokens/7.0.3) -- 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/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 @@ -5515,21 +6160,23 @@ SOFTWARE.
-Microsoft.IdentityModel.Logging 7.0.0 +Microsoft.Extensions.Logging 6.0.0 -## Microsoft.IdentityModel.Logging +## Microsoft.Extensions.Logging -- Version: 7.0.0 +- Version: 6.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) +- 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) ``` 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 +6201,23 @@ SOFTWARE.
-Microsoft.IdentityModel.Logging 7.0.3 +Microsoft.Extensions.Logging 8.0.0 -## Microsoft.IdentityModel.Logging +## Microsoft.Extensions.Logging -- 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.Logging/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/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 +6242,23 @@ SOFTWARE.
-Microsoft.IdentityModel.Protocols 7.0.3 +Microsoft.Extensions.Logging 8.0.1 -## Microsoft.IdentityModel.Protocols +## Microsoft.Extensions.Logging -- 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/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 +6283,23 @@ SOFTWARE.
-Microsoft.IdentityModel.Protocols.OpenIdConnect 7.0.3 +Microsoft.Extensions.Logging.Abstractions 8.0.0 -## Microsoft.IdentityModel.Protocols.OpenIdConnect +## Microsoft.Extensions.Logging.Abstractions -- 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.Abstractions/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 +6324,23 @@ SOFTWARE.
-Microsoft.IdentityModel.Tokens 7.0.0 +Microsoft.Extensions.Logging.Abstractions 8.0.3 -## Microsoft.IdentityModel.Tokens +## Microsoft.Extensions.Logging.Abstractions -- Version: 7.0.0 +- Version: 8.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.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.Abstractions/8.0.3) +- 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 +6365,24 @@ SOFTWARE.
-Microsoft.IdentityModel.Tokens 7.0.3 +Microsoft.Extensions.Logging.Configuration 2.2.0 -## Microsoft.IdentityModel.Tokens +## Microsoft.Extensions.Logging.Configuration -- Version: 7.0.3 +- 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.Tokens/7.0.3) -- 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.Configuration/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 @@ -5749,19 +6407,23 @@ SOFTWARE.
-Microsoft.NET.Test.Sdk 17.8.0 +Microsoft.Extensions.Logging.Configuration 8.0.0 -## Microsoft.NET.Test.Sdk +## Microsoft.Extensions.Logging.Configuration -- Version: 17.8.0 +- Version: 8.0.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) +- Project URL: https://dot.net/ +- 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) ``` -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 +6448,106 @@ SOFTWARE.
-Microsoft.NETCore.Platforms 1.1.0 +Microsoft.Extensions.Logging.Configuration 8.0.1 -## Microsoft.NETCore.Platforms +## Microsoft.Extensions.Logging.Configuration -- Version: 1.1.0 +- Version: 8.0.1 - 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) +- 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) ``` -.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 2.1.2 +Copyright (c) .NET Foundation and Contributors -## Microsoft.NETCore.Platforms +All rights reserved. -- 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) +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject 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.Platforms 5.0.0 +Microsoft.Extensions.Logging.Console 2.2.0 -## Microsoft.NETCore.Platforms +## Microsoft.Extensions.Logging.Console -- Version: 5.0.0 +- Version: 2.2.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) +- 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) ``` -.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.Targets 1.1.0 +Copyright (c) .NET Foundation and Contributors -## Microsoft.NETCore.Targets +All rights reserved. -- 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) +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject 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.OpenApi 1.2.3 +Microsoft.Extensions.Logging.Console 8.0.0 -## Microsoft.OpenApi +## Microsoft.Extensions.Logging.Console -- Version: 1.2.3 +- Version: 8.0.0 - 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) +- 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) ``` -Copyright (c) Microsoft Corporation. All rights reserved. +The MIT License (MIT) -MIT License +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 @@ -6632,7 +6559,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 +6572,23 @@ SOFTWARE.
-Microsoft.TestPlatform.ObjectModel 17.8.0 +Microsoft.Extensions.Logging.Console 8.0.1 -## Microsoft.TestPlatform.ObjectModel +## Microsoft.Extensions.Logging.Console -- Version: 17.8.0 +- Version: 8.0.1 - 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) +- 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) ``` -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 +6613,24 @@ SOFTWARE.
-Microsoft.TestPlatform.TestHost 17.8.0 +Microsoft.Extensions.Logging.Debug 2.2.0 -## Microsoft.TestPlatform.TestHost +## Microsoft.Extensions.Logging.Debug -- Version: 17.8.0 +- Version: 2.2.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) +- 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) ``` -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,220 +6655,55 @@ SOFTWARE.
-Microsoft.Win32.Primitives 4.3.0 +Microsoft.Extensions.Logging.Debug 8.0.0 -## Microsoft.Win32.Primitives +## Microsoft.Extensions.Logging.Debug -- 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.Logging.Debug/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.Extensions.Logging.Debug 8.0.1 -## Microsoft.Win32.Registry +## Microsoft.Extensions.Logging.Debug -- Version: 5.0.0 +- Version: 8.0.1 - 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) +- 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) @@ -6966,250 +6737,15063 @@ SOFTWARE.
-Minio 6.0.1 +Microsoft.Extensions.Logging.EventLog 8.0.0 -## Minio +## Microsoft.Extensions.Logging.EventLog -- 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) +- Version: 8.0.0 +- Authors: Microsoft +- 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) ``` -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. +The MIT License (MIT) - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. +Copyright (c) .NET Foundation and Contributors - "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. +All rights reserved. - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this 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: - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. - "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. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` - "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." +
+Microsoft.Extensions.Logging.EventLog 8.0.1 - "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. +## Microsoft.Extensions.Logging.EventLog - 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. +- Version: 8.0.1 +- Authors: Microsoft +- 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) - 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: +``` +The MIT License (MIT) - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and +Copyright (c) .NET Foundation and Contributors - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and +All rights reserved. - (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 +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - (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. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. - 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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 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. +
- 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. +
+Microsoft.Extensions.Logging.EventSource 8.0.0 - 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.Extensions.Logging.EventSource - 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. +- 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) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) - END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. +``` +The MIT License (MIT) - 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 (c) .NET Foundation and Contributors - Copyright {yyyy} {name of copyright owner} +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. ```
-Monai.Deploy.Messaging 2.0.2 +Microsoft.Extensions.Logging.EventSource 8.0.1 -## Monai.Deploy.Messaging +## Microsoft.Extensions.Logging.EventSource -- 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) +- Version: 8.0.1 +- Authors: Microsoft +- 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) ``` -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) .NET Foundation and Contributors - 1. Definitions. +All rights reserved. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION 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.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.Options 8.0.0 + +## Microsoft.Extensions.Options + +- Version: 8.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Options/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.Extensions.Options 8.0.2 + +## Microsoft.Extensions.Options + +- Version: 8.0.2 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Options/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.Options.ConfigurationExtensions 2.2.0 + +## Microsoft.Extensions.Options.ConfigurationExtensions + +- 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) + + +``` +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.Options.ConfigurationExtensions 8.0.0 + +## Microsoft.Extensions.Options.ConfigurationExtensions + +- 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) + + +``` +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.Primitives 8.0.0 + +## Microsoft.Extensions.Primitives + +- Version: 8.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Primitives/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.IdentityModel.Abstractions 7.0.0 + +## Microsoft.IdentityModel.Abstractions + +- 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.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) 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.0.3 + +## Microsoft.IdentityModel.Abstractions + +- Version: 7.0.3 +- Authors: Microsoft +- Project URL: https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.IdentityModel.Abstractions/7.0.3) +- License: [MIT](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) + + +``` +The MIT License (MIT) + +Copyright (c) Microsoft Corporation + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+Microsoft.IdentityModel.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) Microsoft Corporation + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+Microsoft.IdentityModel.JsonWebTokens 7.0.0 + +## Microsoft.IdentityModel.JsonWebTokens + +- 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) + + +``` +The MIT License (MIT) + +Copyright (c) Microsoft Corporation + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+Microsoft.IdentityModel.JsonWebTokens 7.0.3 + +## Microsoft.IdentityModel.JsonWebTokens + +- Version: 7.0.3 +- Authors: Microsoft +- Project URL: https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.IdentityModel.JsonWebTokens/7.0.3) +- License: [MIT](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) + + +``` +The MIT License (MIT) + +Copyright (c) Microsoft Corporation + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+Microsoft.IdentityModel.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.2.3 +- 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. +``` + +
+ + +
+MongoDB.Bson 2.30.0 + +## MongoDB.Bson + +- Version: 2.30.0 +- Authors: MongoDB Inc. +- Project URL: https://www.mongodb.com/docs/drivers/csharp/ +- Source: [NuGet](https://www.nuget.org/packages/MongoDB.Bson/2.30.0) +- License: [Apache-2.0](https://raw.githubusercontent.com/mongodb/mongo-csharp-driver/master/LICENSE.md) + + +``` +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright {yyyy} {name of copyright owner} + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +``` + +
+ + +
+MongoDB.Driver 2.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. + + "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 @@ -7219,29320 +21803,116432 @@ Apache License 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. + "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.5.0 + +## Swashbuckle.AspNetCore + +- Version: 6.5.0 +- Authors: Swashbuckle.AspNetCore +- Owners: Swashbuckle.AspNetCore +- Project URL: https://github.com/domaindrivendev/Swashbuckle.AspNetCore +- Source: [NuGet](https://www.nuget.org/packages/Swashbuckle.AspNetCore/6.5.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 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.5.0 +- Authors: Swashbuckle.AspNetCore.Swagger +- Project URL: https://github.com/domaindrivendev/Swashbuckle.AspNetCore +- Source: [NuGet](https://www.nuget.org/packages/Swashbuckle.AspNetCore.Swagger/6.5.0) +- License: [MIT](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/raw/master/LICENSE) + + +``` +The MIT License (MIT) + +Copyright (c) 2016 Richard Morris + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+Swashbuckle.AspNetCore.Swagger 8.0.0 + +## Swashbuckle.AspNetCore.Swagger + +- Version: 8.0.0 +- Authors: domaindrivendev +- Project URL: https://github.com/domaindrivendev/Swashbuckle.AspNetCore +- Source: [NuGet](https://www.nuget.org/packages/Swashbuckle.AspNetCore.Swagger/8.0.0) +- License: [MIT](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/raw/master/LICENSE) + + +``` +The MIT License (MIT) + +Copyright (c) 2016 Richard Morris + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+Swashbuckle.AspNetCore.SwaggerGen 6.5.0 + +## Swashbuckle.AspNetCore.SwaggerGen + +- Version: 6.5.0 +- Authors: Swashbuckle.AspNetCore.SwaggerGen +- Project URL: https://github.com/domaindrivendev/Swashbuckle.AspNetCore +- Source: [NuGet](https://www.nuget.org/packages/Swashbuckle.AspNetCore.SwaggerGen/6.5.0) +- License: [MIT](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/raw/master/LICENSE) + + +``` +The MIT License (MIT) + +Copyright (c) 2016 Richard Morris + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+Swashbuckle.AspNetCore.SwaggerGen 8.0.0 + +## Swashbuckle.AspNetCore.SwaggerGen + +- Version: 8.0.0 +- Authors: domaindrivendev +- Project URL: https://github.com/domaindrivendev/Swashbuckle.AspNetCore +- Source: [NuGet](https://www.nuget.org/packages/Swashbuckle.AspNetCore.SwaggerGen/8.0.0) +- License: [MIT](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/raw/master/LICENSE) + + +``` +The MIT License (MIT) + +Copyright (c) 2016 Richard Morris + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+Swashbuckle.AspNetCore.SwaggerUI 6.5.0 + +## Swashbuckle.AspNetCore.SwaggerUI + +- Version: 6.5.0 +- Authors: Swashbuckle.AspNetCore.SwaggerUI +- Project URL: https://github.com/domaindrivendev/Swashbuckle.AspNetCore +- Source: [NuGet](https://www.nuget.org/packages/Swashbuckle.AspNetCore.SwaggerUI/6.5.0) +- License: [MIT](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/raw/master/LICENSE) + + +``` +The MIT License (MIT) + +Copyright (c) 2016 Richard Morris + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+Swashbuckle.AspNetCore.SwaggerUI 8.0.0 + +## Swashbuckle.AspNetCore.SwaggerUI + +- Version: 8.0.0 +- Authors: domaindrivendev +- Project URL: https://github.com/domaindrivendev/Swashbuckle.AspNetCore +- Source: [NuGet](https://www.nuget.org/packages/Swashbuckle.AspNetCore.SwaggerUI/8.0.0) +- License: [MIT](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/raw/master/LICENSE) + + +``` +The MIT License (MIT) + +Copyright (c) 2016 Richard Morris + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.AppContext 4.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 6.0.0 + +## System.Diagnostics.DiagnosticSource + +- Version: 6.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/6.0.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Diagnostics.DiagnosticSource 8.0.0 + +## System.Diagnostics.DiagnosticSource + +- Version: 8.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/8.0.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Diagnostics.EventLog 6.0.0 + +## System.Diagnostics.EventLog + +- Version: 6.0.0 +- Authors: Microsoft +- Project URL: https://dot.net/ +- Source: [NuGet](https://www.nuget.org/packages/System.Diagnostics.EventLog/6.0.0) +- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + + +``` +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+System.Diagnostics.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) + + +``` +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 + + - "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. + View all solutions + - 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 + 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 + + + + + + - (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. +Additional navigation options - 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. + Code ---- -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/ + Issues - 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." + Pull requests - "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. + Discussions - 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. ---- + Actions -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 + Security - 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. + Insights - 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. + 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: - END OF TERMS AND CONDITIONS +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT - APPENDIX: How to apply the Apache License to your work. +More information: - 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. +Project copyright guidance - Copyright [yyyy] [name of copyright owner] +Product distributions +Product distributions use 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 +On Linux and macOS: MIT license +On Windows: .NET Library License - http://www.apache.org/licenses/LICENSE-2.0 +Product distributions include downloadable assets and runtime packs. +More information: - 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. +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. + -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) +Footer -``` -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. + © 2025 GitHub, Inc. + - "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. +Footer navigation - "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. +Terms - "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. +Privacy + + +Security + + +Status + + +Docs + - 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. +Contact - 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 + Manage cookies + - (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. + 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. ---- -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. + + + You can’t perform that action at this time. ```
-Monai.Deploy.Storage.MinIO 1.0.0 +runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 -## Monai.Deploy.Storage.MinIO +## runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl -- 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) +- 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) ``` -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: - (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. +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. - 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 +Navigation Menu - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and +Toggle navigation - (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. + Sign in + + + + + + + + + + Product + + + + + -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) +GitHub Copilot + Write better code with AI + -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. -``` -
+Security + Find and fix vulnerabilities + -
-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. +Actions + Automate any workflow + - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). +Codespaces + Instant dev environments + - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and +Issues + Plan and track work + - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. +Code Review + Manage code changes + - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS - APPENDIX: How to apply the Apache License to your work. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - Copyright {yyyy} {name of copyright owner} - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +Discussions + Collaborate outside of code + - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. -``` -
-
-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) +Code Search + Find more, search less + -``` -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. +Explore - "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. + All 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." + Documentation - "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 Skills - (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. + Blog - 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. -``` -
+ Solutions + -
-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 +By company size - 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. + Enterprises - "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. + Small and medium teams - "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. + Startups - 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 + Nonprofits - (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. +By use case - 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. + 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. - 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. + DevOps - 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. -``` + CI/CD -
+ -
-MongoDB.Driver.Core 2.13.1 -## MongoDB.Driver.Core + View all use cases -- 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. +By industry - "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. + Healthcare - "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." + Financial services - "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: + Manufacturing - (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. + Government - 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. + View all industries - 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 + View all solutions + - http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. -``` + -
-
-MongoDB.Driver.Core 2.21.0 -## MongoDB.Driver.Core + Resources + -- 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. +Topics - "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. + AI - "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. + DevOps - "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. + Security - 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 + Software Development - (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. + View all - 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} +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. -``` + Learning Pathways -
+ -
-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) + Events & Webinars -``` -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. + Ebooks & Whitepapers - "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). + Customer Stories - "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. + Partners - 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. + Executive Insights + + - 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. + Open Source + - 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) +GitHub Sponsors + Fund open source developers + -``` -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 ReadME Project + GitHub community articles + - "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. +Repositories - "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. + Topics - 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 + Trending - (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. + Collections - 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 + Enterprise + - 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. +Enterprise platform + AI-powered developer platform + - "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. +Available add-ons - "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: +Advanced Security + Enterprise-grade security features + - (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. +Copilot for business + Enterprise-grade AI features + - 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} +Premium Support + Enterprise-grade 24/7 support + - 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 +Pricing -- 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) +Search or jump to... -``` -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. +Search code, repositories, users, issues, pull requests... + + + + -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. -``` -
+ Search + -
-NETStandard.Library 1.6.1 -## NETStandard.Library -- Version: 1.6.1 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/NETStandard.Library/1.6.1) -- License: [MICROSOFT .NET LIBRARY License](http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET - - - - -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 +Clear + -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-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. -* 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.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. -``` -
-
-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://github.com/nunit/nunit/raw/master/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: +Search syntax tips -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION 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. -``` -
+ Provide feedback + -
-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. + +We read every piece of feedback, and take your input very seriously. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -``` -
+Include my email address so I can be contacted -
-Newtonsoft.Json.Bson 1.0.2 + Cancel -## Newtonsoft.Json.Bson + Submit feedback -- 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 + Saved searches + +Use saved searches to filter your results more quickly -## 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) +Name -``` -'MIT' reference -MIT License -SPDX identifier -MIT -License text -MIT License +Query -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 + To see all available qualifiers, see our documentation. + + -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. -``` -
+ Cancel -
-Polly 8.2.1 + Create saved search -## 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 + Sign in + -Copyright (c) - + Sign up + +Reseting focus -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and - associated documentation files (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: -The above copyright notice and this permission notice - (including the next paragraph) - shall be included in all copies or substantial - portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT - LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN - NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -SPDX web page -https://spdx.org/licenses/MIT.html -Notice -This license content is provided by the SPDX project. For more information about licenses.nuget.org, see our documentation. -Data pulled from spdx/license-list-data on February 9, 2023. -``` -
-
-Polly.Core 8.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) +You signed in with another tab or window. Reload to refresh your session. +You signed out in another tab or window. Reload to refresh your session. +You switched accounts on another tab or window. Reload to refresh your session. + -``` -'MIT' reference +Dismiss alert -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 February 9, 2023. -``` -
-
-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 + dotnet + +/ +core -MIT License -SPDX identifier -MIT -License text +Public -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. +Notifications + You must be signed in to change notification settings -Data pulled from spdx/license-list-data on February 9, 2023. -``` -
+ +Fork + 4.9k -
-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 + Star + 21.2k - 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: +Code + + - (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. +Issues +310 - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - END OF TERMS AND CONDITIONS +Pull requests +4 - 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. -``` +Discussions -
-
-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/ +Actions -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. +Insights -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. +Additional navigation options -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. + Code - 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/ + Issues -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." + Pull requests -"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. + Discussions -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] + Actions - 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 + Security -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. + Insights -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. + 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: -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. +A license, for example, dotnet/runtime LICENSE.TXT. +Third party notice file, for example, dotnet/runtime THIRD-PARTY-NOTICES.TXT -7. Disclaimer of Warranty. +More information: -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. +Project copyright guidance -8. Limitation of Liability. +Product distributions +Product distributions use the following license: -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. +On Linux and macOS: MIT license +On Windows: .NET Library License -9. Accepting Warranty or Additional Liability. +Product distributions include downloadable assets and runtime packs. +More information: -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. +Windows license information. +.NET Asset Licensing Model -END OF TERMS AND CONDITIONS +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. + -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. -``` -
+Footer -
-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. + © 2025 GitHub, Inc. + -"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. +Footer navigation -"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. +Terms -"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). +Privacy -"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. +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 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. +Docs -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. +Contact -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. + Manage cookies + -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. + Do not share my personal 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. -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.Formatting.Compact 1.1.0 +runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 -## Serilog.Formatting.Compact +## runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl -- 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) +- 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.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. +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 + +Toggle navigation -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] + Sign in + - 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) + 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." +GitHub Copilot + Write better code with AI + -"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: +Security + Find and fix vulnerabilities + -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. +Actions + Automate any workflow + -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. +Codespaces + Instant dev environments + - 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 +Issues + Plan and track work + -## 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. +Code Review + Manage code changes + -"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. +Discussions + Collaborate outside of code + -"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. +Code Search + Find more, search less + -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. +Explore -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. + All features -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 + Documentation -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. -``` + GitHub Skills -
+ -
-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) + Blog -``` -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) + Solutions + -``` -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. -``` -
+By company size -
-Snappier 1.0.0 -## Snappier + Enterprises -- 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. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: + Small and medium teams - * 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: + Startups - - 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). -``` + Nonprofits + + + + + + +By use case + + -
+ DevSecOps + -
-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) + DevOps + -``` -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: + 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 -
-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: +By industry -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
+ Healthcare + -
-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) + Financial services + -``` -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. + Manufacturing -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. -``` -
+ Government -
-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) + View all industries -``` -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. -``` -
+ View all solutions + -
-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: [BSD-3-Clause](https://github.com/SpecFlowOSS/SpecFlow/raw/master/LICENSE.txt) -``` -SpecFlow License (New BSD License) -Copyright (c) 2020, Tricentis GmbH + Resources + -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.Plus.LivingDocPlugin 3.9.57 +Topics -## 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) + AI -``` -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. + DevOps -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 + Security -## 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) -``` -SpecFlow License (New BSD License) + Software Development -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. -``` + View all -
+ -
-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 +Explore -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. + Learning Pathways -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION 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.5.0 -## Swashbuckle.AspNetCore -- Version: 6.5.0 -- Authors: Swashbuckle.AspNetCore -- Owners: Swashbuckle.AspNetCore -- Project URL: https://github.com/domaindrivendev/Swashbuckle.AspNetCore -- Source: [NuGet](https://www.nuget.org/packages/Swashbuckle.AspNetCore/6.5.0) -- License: [MIT](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/raw/master/LICENSE) + Events & Webinars + -``` -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. -``` + Ebooks & Whitepapers -
+ -
-Swashbuckle.AspNetCore.Swagger 6.5.0 -## Swashbuckle.AspNetCore.Swagger + Customer Stories -- Version: 6.5.0 -- Authors: Swashbuckle.AspNetCore.Swagger -- Project URL: https://github.com/domaindrivendev/Swashbuckle.AspNetCore -- Source: [NuGet](https://www.nuget.org/packages/Swashbuckle.AspNetCore.Swagger/6.5.0) -- License: [MIT](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/raw/master/LICENSE) + -``` -The MIT License (MIT) -Copyright (c) 2016 Richard Morris + Partners -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
-
-Swashbuckle.AspNetCore.SwaggerGen 6.5.0 + Executive Insights -## Swashbuckle.AspNetCore.SwaggerGen + -- Version: 6.5.0 -- Authors: Swashbuckle.AspNetCore.SwaggerGen -- Project URL: https://github.com/domaindrivendev/Swashbuckle.AspNetCore -- Source: [NuGet](https://www.nuget.org/packages/Swashbuckle.AspNetCore.SwaggerGen/6.5.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. -``` -
+ Open Source + -
-Swashbuckle.AspNetCore.SwaggerUI 6.5.0 -## Swashbuckle.AspNetCore.SwaggerUI -- Version: 6.5.0 -- Authors: Swashbuckle.AspNetCore.SwaggerUI -- Project URL: https://github.com/domaindrivendev/Swashbuckle.AspNetCore -- Source: [NuGet](https://www.nuget.org/packages/Swashbuckle.AspNetCore.SwaggerUI/6.5.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. -``` +GitHub Sponsors + Fund open source developers + -
-
-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) -``` -.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 ReadME Project + GitHub community articles + -
-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) +Repositories -``` -.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.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) + Trending + -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors -All rights reserved. + Collections -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION 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) + Enterprise + -``` -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. -``` +Enterprise platform + AI-powered developer platform + -
-
-System.Collections 4.3.0 -## System.Collections +Available add-ons -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.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 +Advanced Security + Enterprise-grade security features + -- 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 +Copilot for business + Enterprise-grade AI features + -- 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. -``` -
-
-System.Collections.NonGeneric 4.3.0 -## System.Collections.NonGeneric +Premium Support + Enterprise-grade 24/7 support + -- 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 +Pricing -- 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. -``` -
-
-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. +Search or jump to... -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION 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 +Search code, repositories, users, issues, pull requests... -- 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. + Search + -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION 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: +Clear + + -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION 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) -``` -.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.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) -``` -.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.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.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: +Search syntax tips -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION 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. -``` + Provide feedback + -
-
-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) -``` -.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. -``` -
+ +We read every piece of feedback, and take your input very seriously. -
-System.Diagnostics.Tracing 4.1.0 -## System.Diagnostics.Tracing +Include my email address so I can be contacted -- 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) + Cancel -``` -.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. -``` + Submit feedback -
-
-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 + Saved searches + +Use saved searches to filter your results more quickly -## 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) -``` -.NET Library License Terms | .NET - - - - -MICROSOFT SOFTWARE LICENSE -TERMS - -MICROSOFT .NET -LIBRARY - -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. - -If -you comply with these license terms, you have the rights below. - -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  - -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Globalization 4.3.0 -## System.Globalization -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Globalization/4.3.0) -- License: [MICROSOFT .NET LIBRARY License](http://go.microsoft.com/fwlink/?LinkId=329770) + -``` -.NET Library License Terms | .NET - - - - -MICROSOFT SOFTWARE LICENSE -TERMS - -MICROSOFT .NET -LIBRARY - -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. - -If -you comply with these license terms, you have the rights below. - -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  - -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Globalization.Calendars 4.3.0 +Name -## 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. -``` -
+Query -
-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) + To see all available qualifiers, see our 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.IO 4.3.0 + Cancel -## System.IO + Create saved search -- 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) -``` -.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.Abstractions 20.0.4 -## System.IO.Abstractions -- Version: 20.0.4 -- Authors: Tatham Oddie & friends -- Project URL: https://github.com/TestableIO/System.IO.Abstractions -- Source: [NuGet](https://www.nuget.org/packages/System.IO.Abstractions/20.0.4) -- License: [MIT](https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) -``` -The MIT License (MIT) -Copyright (c) Tatham Oddie and Contributors + Sign in + -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: + Sign up + +Reseting focus -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION 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 20.0.4 -## System.IO.Abstractions.TestingHelpers -- Version: 20.0.4 -- Authors: Tatham Oddie & friends -- Project URL: https://github.com/TestableIO/System.IO.Abstractions -- Source: [NuGet](https://www.nuget.org/packages/System.IO.Abstractions.TestingHelpers/20.0.4) -- License: [MIT](https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) -``` -The MIT License (MIT) +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. + -Copyright (c) Tatham Oddie and Contributors -All rights reserved. +Dismiss alert -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION 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) -``` -.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.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. -``` -
+ dotnet + +/ +core -
-System.IO.FileSystem 4.0.1 +Public -## 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. -``` -
+ +Notifications + You must be signed in to change notification settings -
-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) +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.IO.FileSystem.Primitives 4.0.1 -## System.IO.FileSystem.Primitives + Star + 21.2k -- 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) -``` -.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 7.0.0 -## System.IO.Hashing -- Version: 7.0.0 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.IO.Hashing/7.0.0) -- License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) -``` -The MIT License (MIT) +Code -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 +310 -
-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 +Pull requests +4 -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: +Actions -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION 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.3 -## System.IdentityModel.Tokens.Jwt -- 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/System.IdentityModel.Tokens.Jwt/7.0.3) -- License: [MIT](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) +Security -``` -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. -``` -
+Insights -
-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. -``` +Additional navigation options -
+ -
-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) -``` -.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) + 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.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) + Issues -``` -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) + Pull requests -``` -.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.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. -``` -
+ Discussions -
-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) -``` -.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.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) + Actions -``` -.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.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) -``` -.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 + Security -## 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) + Insights -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) -``` -.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 -
-System.Reflection.Emit 4.0.1 +More information: -## System.Reflection.Emit +Project copyright guidance -- 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) +Product distributions +Product distributions use the following license: +On Linux and macOS: MIT license +On Windows: .NET Library License -``` -The MIT License (MIT) +Product distributions include downloadable assets and runtime packs. +More information: -Copyright (c) .NET Foundation and Contributors +Windows license information. +.NET Asset Licensing Model -All rights reserved. +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. + -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION 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) +Footer -``` -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. -``` -
+ © 2025 GitHub, Inc. + -
-System.Reflection.Emit.ILGeneration 4.0.1 +Footer navigation -## 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) +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.Reflection.Emit.ILGeneration 4.3.0 -## System.Reflection.Emit.ILGeneration +Status -- 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) +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.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) + 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.Reflection.Emit.Lightweight 4.3.0 + Do not share my personal information + -## 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. + + + + + + You can’t perform that action at this time. ```
-System.Reflection.Extensions 4.3.0 +runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 -## System.Reflection.Extensions +## 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.Extensions/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.Metadata 1.6.0 -## System.Reflection.Metadata -- Version: 1.6.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Reflection.Metadata/1.6.0) -- License: [MIT](https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
-
-System.Reflection.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. -``` -
-
-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) -``` -.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) -``` -.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) +Skip to content -``` -.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) -``` -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. -``` +Navigation Menu -
+Toggle navigation -
-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) + Sign in + -``` -.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 -## 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) -``` -.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.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) -``` -.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 -- 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) +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.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) +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.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) +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.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) + +Codespaces + Instant dev environments + -``` -.NET Library License Terms | .NET - - - - -MICROSOFT SOFTWARE LICENSE -TERMS - -MICROSOFT .NET -LIBRARY - -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. - -If -you comply with these license terms, you have the rights below. - -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  - -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Runtime.Loader 4.3.0 -## 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) +Issues + Plan and track work + -``` -.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.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) +Code Review + Manage code changes + -``` -.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.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) +Discussions + Collaborate outside of code + -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors -All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` +Code Search + Find more, search less + -
-
-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) +Explore -``` -.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. -``` -
+ All features -
-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) + Documentation -``` -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. -``` + GitHub Skills -
+ -
-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) + Blog -``` -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) + Solutions + -``` -.NET Library License Terms | .NET - - - - -MICROSOFT SOFTWARE LICENSE -TERMS - -MICROSOFT .NET -LIBRARY - -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. - -If -you comply with these license terms, you have the rights below. - -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  - -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Security.Cryptography.Encoding 4.3.0 -## System.Security.Cryptography.Encoding +By company size -- 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. -``` + Enterprises -
+ -
-System.Security.Cryptography.OpenSsl 4.3.0 -## System.Security.Cryptography.OpenSsl + Small and medium teams -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Security.Cryptography.OpenSsl/4.3.0) -- License: [MICROSOFT .NET LIBRARY License](http://go.microsoft.com/fwlink/?LinkId=329770) + -``` -.NET Library License Terms | .NET - - - - -MICROSOFT SOFTWARE LICENSE -TERMS - -MICROSOFT .NET -LIBRARY - -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. - -If -you comply with these license terms, you have the rights below. - -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  - -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
+ Startups + -
-System.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) + Nonprofits + -``` -.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 +By use case -## 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) + DevSecOps -``` -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: + DevOps -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
+ CI/CD -
-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) + View all use cases -``` -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. -``` -
+By industry -
-System.Security.Cryptography.X509Certificates 4.3.0 -## System.Security.Cryptography.X509Certificates + Healthcare -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Security.Cryptography.X509Certificates/4.3.0) -- License: [MICROSOFT .NET LIBRARY License](http://go.microsoft.com/fwlink/?LinkId=329770) + -``` -.NET Library License Terms | .NET - - - - -MICROSOFT SOFTWARE LICENSE -TERMS - -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. -``` -
+ Financial services + -
-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) + Manufacturing + -``` -The MIT License (MIT) -Copyright (c) .NET Foundation and Contributors -All rights reserved. + Government -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
+ View all industries + -
-System.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 + View all solutions + -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. -``` -
+ Resources + -
-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. -``` -
+Topics -
-System.Text.Encoding.CodePages 4.5.1 -## System.Text.Encoding.CodePages + AI -- 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 + DevOps -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. -``` + Security -
+ -
-System.Text.Encoding.CodePages 6.0.0 -## System.Text.Encoding.CodePages + Software Development -- 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 + View all -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 +Explore -## 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) + 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. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` + Events & Webinars -
+ -
-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) + 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. -``` + -
-
-System.Text.Encoding.Extensions 4.3.0 + Customer Stories -## 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) -``` -.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. -``` + Partners -
+ -
-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) + Executive Insights -``` -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 + Open Source + -## 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. -``` -
+GitHub Sponsors + Fund open source developers + -
-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. +The ReadME Project + GitHub community articles + + + -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Repositories -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
+ Topics -
-System.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) + Trending -``` -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: + Collections -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. + -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION 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) + Enterprise + -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 +Enterprise platform + AI-powered developer platform + -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. -``` +Available add-ons -
-
-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) +Advanced Security + Enterprise-grade security features + -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.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. -``` -
+Premium Support + Enterprise-grade 24/7 support + -
-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. -``` -
+Pricing -
-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. -``` -
+Search or jump to... -
-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. +Search code, repositories, users, issues, pull requests... -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -``` -
+ Search + -
-System.Threading.Channels 8.0.0 -## System.Threading.Channels -- Version: 8.0.0 -- Authors: Microsoft -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Threading.Channels/8.0.0) -- License: [MIT](https://github.com/dotnet/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 +Clear + -## System.Threading.Tasks -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Threading.Tasks/4.3.0) -- License: [MICROSOFT .NET LIBRARY License](http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET - - - - -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.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) -``` -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) -``` -.NET Library License Terms | .NET - - - - -MICROSOFT SOFTWARE LICENSE -TERMS - -MICROSOFT .NET -LIBRARY - -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. - -If -you comply with these license terms, you have the rights below. - -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  - -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Threading.Timer 4.3.0 -## System.Threading.Timer -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Threading.Timer/4.3.0) -- License: [MICROSOFT .NET LIBRARY License](http://go.microsoft.com/fwlink/?LinkId=329770) + -``` -.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.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 + Provide feedback + -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Xml.ReaderWriter/4.3.0) -- License: [MICROSOFT .NET LIBRARY License](http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET - - - - -MICROSOFT SOFTWARE LICENSE -TERMS - -MICROSOFT .NET -LIBRARY - -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. - -If -you comply with these license terms, you have the rights below. - -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  - -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-System.Xml.XDocument 4.3.0 -## System.Xml.XDocument -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Xml.XDocument/4.3.0) -- License: [MICROSOFT .NET LIBRARY License](http://go.microsoft.com/fwlink/?LinkId=329770) + +We read every piece of feedback, and take your input very seriously. -``` -.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 20.0.4 -## TestableIO.System.IO.Abstractions +Include my email address so I can be contacted -- Version: 20.0.4 -- Authors: Tatham Oddie & friends -- Project URL: https://github.com/TestableIO/System.IO.Abstractions -- Source: [NuGet](https://www.nuget.org/packages/TestableIO.System.IO.Abstractions/20.0.4) -- License: [MIT](https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) + Cancel -``` -The MIT License (MIT) + Submit feedback -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 20.0.4 -## TestableIO.System.IO.Abstractions.TestingHelpers -- Version: 20.0.4 -- 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/20.0.4) -- License: [MIT](https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) + Saved searches + +Use saved searches to filter your results more quickly -``` -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 20.0.4 -## TestableIO.System.IO.Abstractions.Wrappers -- Version: 20.0.4 -- 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/20.0.4) -- License: [MIT](https://github.com/TestableIO/System.IO.Abstractions/raw/main/LICENSE) -``` -The MIT License (MIT) +Name -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. -``` -
+Query -
-YamlDotNet 13.3.1 -## YamlDotNet + To see all available qualifiers, see our documentation. + + -- 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. + Cancel + + Create saved search + -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION 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) + Sign in + -``` -MIT License -Copyright (c) 2021 Oleg Stepanischev + Sign up + +Reseting focus -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION 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) +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 MIT License (MIT) -Copyright (c) 2018 Toni Solarin-Sodara +Dismiss alert -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION 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. + dotnet + +/ +core ----- libijg (from DCMTK 3.5.4 COPYRIGHT) ---- +Public -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. - */ + +Notifications + You must be signed in to change notification settings ----- 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. - */ + +Fork + 4.9k ----- 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. + Star + 21.2k -* 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. +Code -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. +Issues +310 ----- 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. -``` +Pull requests +4 -
-
-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) +Discussions -``` -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. -``` -
+Actions -
-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. -``` -
+Security -
-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. -``` -
+Insights -
-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) + + -``` -.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 -
-runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 + -## runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl -- Version: 4.3.2 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET - - - - -MICROSOFT SOFTWARE LICENSE -TERMS - -MICROSOFT .NET -LIBRARY - -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. - -If -you comply with these license terms, you have the rights below. - -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  - -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 -## runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + 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. -``` -
-
-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. -``` -
-
-runtime.native.System 4.3.0 + Issues -## 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) -``` -.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.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. -``` + Pull requests -
-
-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 -## runtime.native.System.Net.Http + Discussions -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.native.System.Net.Http/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET - - - - -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.Apple 4.3.0 -## runtime.native.System.Security.Cryptography.Apple -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.native.System.Security.Cryptography.Apple/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET - - - - -MICROSOFT SOFTWARE LICENSE -TERMS - -MICROSOFT .NET -LIBRARY - -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. - -If -you comply with these license terms, you have the rights below. - -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  - -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
+ Actions -
-runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 -## runtime.native.System.Security.Cryptography.OpenSsl -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.native.System.Security.Cryptography.OpenSsl/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET - - - - -MICROSOFT SOFTWARE LICENSE -TERMS - -MICROSOFT .NET -LIBRARY - -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. - -If -you comply with these license terms, you have the rights below. - -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  - -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 -## runtime.native.System.Security.Cryptography.OpenSsl -- Version: 4.3.2 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.native.System.Security.Cryptography.OpenSsl/4.3.2) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) + 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. -``` -
-
-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. -``` -
+ Insights -
-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) -``` -.NET Library License Terms | .NET - - - - -MICROSOFT SOFTWARE LICENSE -TERMS - -MICROSOFT .NET -LIBRARY - -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. - -If -you comply with these license terms, you have the rights below. - -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  - -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
+ + -
-runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 -## runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET - - - - -MICROSOFT SOFTWARE LICENSE -TERMS - -MICROSOFT .NET -LIBRARY - -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. - -If -you comply with these license terms, you have the rights below. - -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  - -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` + 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.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 +Project copyright guidance -## runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl +Product distributions +Product distributions use the following license: -- 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) +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.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) -``` -.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.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) -``` -.NET Library License Terms | .NET - - - - -MICROSOFT SOFTWARE LICENSE -TERMS - -MICROSOFT .NET -LIBRARY - -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. - -If -you comply with these license terms, you have the rights below. - -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  - -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 + © 2025 GitHub, Inc. + -## 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) +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.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 -## runtime.rhel.7-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.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) +Status -``` -.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. -``` -
+Docs -
-runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 +Contact -## 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) -``` -.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. -``` + Manage cookies + -
-
-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) + Do not share my personal 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. -``` -
-
-runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 -## runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl -- Version: 4.3.2 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET - - - - -MICROSOFT SOFTWARE LICENSE -TERMS - -MICROSOFT .NET -LIBRARY - -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. - -If -you comply with these license terms, you have the rights below. - -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  - -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. -``` -
-
-runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 -## runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl -- Version: 4.3.0 -- Authors: Microsoft -- Owners: microsoft,dotnetframework -- Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0) -- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) -``` -.NET Library License Terms | .NET - - - - -MICROSOFT SOFTWARE LICENSE -TERMS - -MICROSOFT .NET -LIBRARY - -These -license terms are an agreement between you and Microsoft Corporation (or based -on where you live, one of its affiliates). They apply to the software named -above. The terms also apply to any Microsoft services or updates for the -software, except to the extent those have different terms. - -If -you comply with these license terms, you have the rights below. - -1.    INSTALLATION AND USE RIGHTS. -You may -install and use any number of copies of the software to develop and test your applications.  - -2.    -THIRD PARTY COMPONENTS. The software may include third party components with -separate legal notices or governed by other agreements, as may be described in -the ThirdPartyNotices file(s) accompanying the software. -3.    -ADDITIONAL LICENSING -REQUIREMENTS AND/OR USE RIGHTS. -a.     -DISTRIBUTABLE -CODE.  The software is -comprised of Distributable Code. “Distributable Code” is code that you are -permitted to distribute in applications you develop if you comply with the -terms below. -i.      Right to Use and Distribute. -·        -You may copy and distribute the object code form of the software. -·        -Third Party Distribution. You may permit distributors of your applications -to copy and distribute the Distributable Code as part of those applications. -ii.     Distribution Requirements. For any -Distributable Code you distribute, you must -·        -use the Distributable Code in your applications and not as a -standalone distribution; -·        -require distributors and external end users to agree to terms that -protect it at least as much as this agreement; and -·        -indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys’ fees, related to the distribution or use of your applications, -except to the extent that any claim is based solely on the unmodified Distributable -Code. -iii.   Distribution Restrictions. You may not -·        -use Microsoft’s trademarks in your applications’ names or in a way -that suggests your applications come from or are endorsed by Microsoft; or -·        -modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An “Excluded -License” is one that requires, as a condition of use, modification or -distribution of code, that (i) it be disclosed or distributed in source code -form; or (ii) others have the right to modify it. -4.    -DATA. -a.     -Data Collection. The software may collect -information about you and your use of the software, and send that to Microsoft. -Microsoft may use this information to provide services and improve our products -and services.  You may opt-out of many of these scenarios, but not all, as -described in the software documentation.  There are also some features in the software that may enable you and -Microsoft to collect data from users of your applications. If you use -these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft’s -privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data -collection and its use from the software documentation and our privacy -statement. Your use of the software operates as your consent to these -practices. -b.    -Processing of Personal Data. To the extent Microsoft is a -processor or subprocessor of personal data in connection with the software, -Microsoft makes the commitments in the European Union General Data Protection -Regulation Terms of the Online Services Terms to all customers effective May -25, 2018, at https://learn.microsoft.com/en-us/legal/gdpr. -5.    -Scope of -License. The software is licensed, not sold. This agreement -only gives you some rights to use the software. Microsoft reserves all other -rights. Unless applicable law gives you more rights despite this limitation, -you may use the software only as expressly permitted in this agreement. In -doing so, you must comply with any technical limitations in the software that -only allow you to use it in certain ways. You may not -·        -work around any technical -limitations in the software; -·        -reverse engineer, decompile or -disassemble the software, or otherwise attempt to derive the source code for -the software, except and to the extent required by third party licensing terms -governing use of certain open source components that may be included in the -software; -·        -remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -·        -use the software in any way that -is against the law; or -·        -share, publish, rent or lease the -software, provide the software as a stand-alone offering for others to use, or -transfer the software or this agreement to any third party. -6.    -Export -Restrictions. You must comply with all domestic and international -export laws and regulations that apply to the software, which include -restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. -7.    -SUPPORT -SERVICES. Because this software is “as is,” we may not provide -support services for it. -8.    -Entire -Agreement. This -agreement, and the terms for supplements, updates, Internet-based services and -support services that you use, are the entire agreement for the software and -support services. -9.    Applicable Law.  If you acquired the software in the United States, Washington law -applies to interpretation of and claims for breach of this agreement, and the -laws of the state where you live apply to all other claims. If you acquired the -software in any other country, its laws apply. -10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You -may have other rights, including consumer rights, under the laws of your state -or country. Separate and apart from your relationship with Microsoft, you may -also have rights with respect to the party from which you acquired the -software. This agreement does not change those other rights if the laws of your -state or country do not permit it to do so. For example, if you acquired the -software in one of the below regions, or mandatory country law applies, then -the following provisions apply to you: -a)    Australia. You have statutory guarantees under the Australian Consumer -Law and nothing in this agreement is intended to affect those rights. -b)    Canada. If you acquired this software in Canada, you may stop -receiving updates by turning off the automatic update feature, disconnecting -your device from the Internet (if and when you re-connect to the Internet, -however, the software will resume checking for and installing updates), or uninstalling -the software. The product documentation, if any, may also specify how to turn -off updates for your specific device or software. -c)    Germany and Austria. -(i)        Warranty. The software will perform -substantially as described in any Microsoft materials that accompany it. -However, Microsoft gives no contractual guarantee in relation to the software. -(ii)       Limitation of Liability. In case of -intentional conduct, gross negligence, claims based on the Product Liability -Act, as well as in case of death or personal or physical injury, Microsoft is -liable according to the statutory law. -Subject to the foregoing clause (ii), Microsoft will only -be liable for slight negligence if Microsoft is in breach of such material -contractual obligations, the fulfillment of which facilitate the due -performance of this agreement, the breach of which would endanger the purpose -of this agreement and the compliance with which a party may constantly trust in -(so-called "cardinal obligations"). In other cases of slight negligence, -Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK -OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. -TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. -12. -Limitation -on and Exclusion of Remedies and Damages. YOU -CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. -$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST -PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. -This limitation applies to (a) -anything related to the software, services, content (including code) on third -party Internet sites, or third party applications; and (b) claims for breach of -contract, breach of warranty, guarantee or condition, strict liability, -negligence, or other tort to the extent permitted by applicable law. -It -also applies even if Microsoft knew or should have known about the possibility -of the damages. The above limitation or exclusion may not apply to you because -your state or country may not allow the exclusion or limitation of incidental, -consequential or other damages. + You can’t perform that action at this time. ```
-runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 +xunit 2.7.0 -## runtime.ubuntu.16.04-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.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/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. -``` -.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. ```
-xunit 2.7.0 +xunit 2.9.3 ## xunit -- Version: 2.7.0 +- Version: 2.9.3 - Authors: jnewkirk,bradwilson -- Source: [NuGet](https://www.nuget.org/packages/xunit/2.7.0) +- Source: [NuGet](https://www.nuget.org/packages/xunit/2.9.3) - License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) @@ -36688,6 +138384,37 @@ limitations under the License.
+
+xunit.analyzers 1.18.0 + +## xunit.analyzers + +- 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) + + +``` +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. +``` + +
+ +
xunit.assert 2.7.0 @@ -36753,6 +138480,71 @@ Both sets of code are covered by the following license:
+
+xunit.assert 2.9.3 + +## xunit.assert + +- Version: 2.9.3 +- Authors: jnewkirk,bradwilson +- 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) + + +``` +Unless otherwise noted, the source code here is covered by the following license: + + 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. + +----------------------- + +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.core 2.7.0 @@ -36818,6 +138610,71 @@ Both sets of code are covered by the following license:
+
+xunit.core 2.9.3 + +## xunit.core + +- 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) + + +``` +Unless otherwise noted, the source code here is covered by the following license: + + 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. + +----------------------- + +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.extensibility.core 2.7.0 @@ -36883,6 +138740,71 @@ Both sets of code are covered by the following license:
+
+xunit.extensibility.core 2.9.3 + +## xunit.extensibility.core + +- Version: 2.9.3 +- Authors: jnewkirk,bradwilson +- 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) + + +``` +Unless otherwise noted, the source code here is covered by the following license: + + 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. + +----------------------- + +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.extensibility.execution 2.7.0 @@ -36948,6 +138870,71 @@ Both sets of code are covered by the following license:
+
+xunit.extensibility.execution 2.9.3 + +## xunit.extensibility.execution + +- Version: 2.9.3 +- Authors: jnewkirk,bradwilson +- 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) + + +``` +Unless otherwise noted, the source code here is covered by the following license: + + 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. + +----------------------- + +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.runner.visualstudio 2.5.6 @@ -36996,7 +138983,61 @@ 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. +``` + +
+ + +
+xunit.runner.visualstudio 3.0.2 + +## xunit.runner.visualstudio + +- Version: 3.0.2 +- Authors: jnewkirk,bradwilson +- Source: [NuGet](https://www.nuget.org/packages/xunit.runner.visualstudio/3.0.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. ```
diff --git a/src/Common/Configuration/Monai.Deploy.WorkflowManager.Common.Configuration.csproj b/src/Common/Configuration/Monai.Deploy.WorkflowManager.Common.Configuration.csproj index 8c367fb1c..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 7f19e87a0..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.2, )", - "resolved": "2.0.2", - "contentHash": "iQsD13BAnpbkv1xIVS4cRT2ZXjtcvHJFXlzvTaXjSEEtgGRR7f/IW/9smM2mZlPAyjmRdzk6hyye2vw6rl/tTw==", + "requested": "[2.0.4, )", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "20.0.4" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage": { "type": "Direct", - "requested": "[1.0.0, )", - "resolved": "1.0.0", - "contentHash": "YN087swDoJJCj+UgPVWzsraxL730ajg8OJdEahgPvZFe4quFlfhWIGLweVKRNhSvrN/CV87/m+noLJu7jSEaww==", + "requested": "[1.0.2, )", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.30", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", - "Monai.Deploy.Storage.S3Policy": "1.0.0", - "System.IO.Abstractions": "20.0.4" + "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.3.0", - "contentHash": "5KQ6zQDNRduora6L8lGQcRikLNLj0s4XjctGuUX24uBRzHMMKv6BatVDSBWRs96riz7PJj7Efn3yOFhfYXgnWg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.300.29", - "contentHash": "BMvjbKNzA7Y1eFbhnRbexaUKZ6FwR/hAdvmPYYYA35kw0Ig5E12shMiCEqtRL1EQYVpAqmLdSPZNxV4hu5Ncng==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.30", - "contentHash": "hsCHGNTf1UeNEVBrjuFsWQfylcqzrBn27bfidgr0VVCKc82dz/PEFIrSFzXuEOjvRSiO5wji/V7x9bGyf1aJ6A==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.300.29, 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.0", - "contentHash": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==" + "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.0", - "contentHash": "P9SoBuVZhJPpALZmSq72aQEb9ryP67EdquaCZGXGrrcASTNHYdrUhnpgSwIipgM5oVC+dKpRXg5zxobmF9xr5g==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0" + "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.0", - "contentHash": "AT2qqos3IgI09ok36Qag9T8bb6kHJ3uT9Q5ki6CySybFsK6/9JbvQAgAHf1pVEjST0/N4JaFaCbm40R5edffwg==" + "resolved": "8.0.14", + "contentHash": "se5sdveMiA3PUOWchOZXY/sGA50MrJ/Mg/G6CdQBtyA4MLySNRilVCi23YT90RAwqvI2uQEk5+buxYdpAfuwpA==" }, "Microsoft.Extensions.FileProviders.Abstractions": { "type": "Transitive", @@ -93,28 +92,28 @@ }, "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.0", - "contentHash": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Options": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "resolved": "8.0.2", + "contentHash": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", "dependencies": { "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", "Microsoft.Extensions.Primitives": "8.0.0" @@ -127,10 +126,10 @@ }, "Monai.Deploy.Storage.S3Policy": { "type": "Transitive", - "resolved": "1.0.0", - "contentHash": "I8My4nZEt1vA2wDvti84CfhK+TnyW60E/50Cb+xyhzdrlqWpWr/Xbwhl1ocELAPDeRsakECK4cikrNYLbpp+pQ==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.3.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": "20.0.4", - "contentHash": "Vv3DffYCM/DEQ7+9Dn7ydq852WSVtdeoLNlztIqaMAl4o6aALyAJQRTQ30d/3D7BVf5pALsGm22HYb4Y6h8xvw==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4", - "TestableIO.System.IO.Abstractions.Wrappers": "20.0.4" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "20.0.4", - "contentHash": "zvuE3an8qmEjlz72ZKyW/gBZprR0TMTDxuw77i1OXi5wEagXRhHwP4lOaLvHIXNlwyCAmdmei6iLHsfsZcuUAA==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "20.0.4", - "contentHash": "LbVaZauZfCkcGmHyPhQ2yiKv5GQqTvMViPYd3NjU1tGxp0N2p7Oc6Q/2trN6ZNIZCr42ujJdYUB63hE4mtsHRQ==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4" + "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 a39d50df9..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.3.0", - "contentHash": "5KQ6zQDNRduora6L8lGQcRikLNLj0s4XjctGuUX24uBRzHMMKv6BatVDSBWRs96riz7PJj7Efn3yOFhfYXgnWg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.300.29", - "contentHash": "BMvjbKNzA7Y1eFbhnRbexaUKZ6FwR/hAdvmPYYYA35kw0Ig5E12shMiCEqtRL1EQYVpAqmLdSPZNxV4hu5Ncng==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.30", - "contentHash": "hsCHGNTf1UeNEVBrjuFsWQfylcqzrBn27bfidgr0VVCKc82dz/PEFIrSFzXuEOjvRSiO5wji/V7x9bGyf1aJ6A==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.300.29, 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.0", - "contentHash": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==" + "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.0", - "contentHash": "P9SoBuVZhJPpALZmSq72aQEb9ryP67EdquaCZGXGrrcASTNHYdrUhnpgSwIipgM5oVC+dKpRXg5zxobmF9xr5g==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0" + "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.0", - "contentHash": "AT2qqos3IgI09ok36Qag9T8bb6kHJ3uT9Q5ki6CySybFsK6/9JbvQAgAHf1pVEjST0/N4JaFaCbm40R5edffwg==" + "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,16 +135,16 @@ }, "Microsoft.Extensions.Logging.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Options": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "resolved": "8.0.2", + "contentHash": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", "dependencies": { "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", "Microsoft.Extensions.Primitives": "8.0.0" @@ -158,32 +157,32 @@ }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.2", - "contentHash": "iQsD13BAnpbkv1xIVS4cRT2ZXjtcvHJFXlzvTaXjSEEtgGRR7f/IW/9smM2mZlPAyjmRdzk6hyye2vw6rl/tTw==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "20.0.4" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage": { "type": "Transitive", - "resolved": "1.0.0", - "contentHash": "YN087swDoJJCj+UgPVWzsraxL730ajg8OJdEahgPvZFe4quFlfhWIGLweVKRNhSvrN/CV87/m+noLJu7jSEaww==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.30", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", - "Monai.Deploy.Storage.S3Policy": "1.0.0", - "System.IO.Abstractions": "20.0.4" + "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.0", - "contentHash": "I8My4nZEt1vA2wDvti84CfhK+TnyW60E/50Cb+xyhzdrlqWpWr/Xbwhl1ocELAPDeRsakECK4cikrNYLbpp+pQ==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.3.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": "20.0.4", - "contentHash": "Vv3DffYCM/DEQ7+9Dn7ydq852WSVtdeoLNlztIqaMAl4o6aALyAJQRTQ30d/3D7BVf5pALsGm22HYb4Y6h8xvw==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4", - "TestableIO.System.IO.Abstractions.Wrappers": "20.0.4" + "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": "20.0.4", - "contentHash": "zvuE3an8qmEjlz72ZKyW/gBZprR0TMTDxuw77i1OXi5wEagXRhHwP4lOaLvHIXNlwyCAmdmei6iLHsfsZcuUAA==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "20.0.4", - "contentHash": "LbVaZauZfCkcGmHyPhQ2yiKv5GQqTvMViPYd3NjU1tGxp0N2p7Oc6Q/2trN6ZNIZCr42ujJdYUB63hE4mtsHRQ==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "monai.deploy.workflowmanager.common.configuration": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.2, )", - "Monai.Deploy.Storage": "[1.0.0, )" + "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 35cec5db1..f76fb28cf 100644 --- a/src/TaskManager/API/Monai.Deploy.WorkflowManager.TaskManager.API.csproj +++ b/src/TaskManager/API/Monai.Deploy.WorkflowManager.TaskManager.API.csproj @@ -32,7 +32,7 @@ - + diff --git a/src/TaskManager/API/packages.lock.json b/src/TaskManager/API/packages.lock.json index 9bcbed4dd..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.2, )", - "resolved": "2.0.2", - "contentHash": "iQsD13BAnpbkv1xIVS4cRT2ZXjtcvHJFXlzvTaXjSEEtgGRR7f/IW/9smM2mZlPAyjmRdzk6hyye2vw6rl/tTw==", + "requested": "[2.0.4, )", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "20.0.4" + "System.IO.Abstractions": "21.3.1" } }, "Mongo.Migration": { @@ -48,8 +48,8 @@ }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "5KQ6zQDNRduora6L8lGQcRikLNLj0s4XjctGuUX24uBRzHMMKv6BatVDSBWRs96riz7PJj7Efn3yOFhfYXgnWg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "DnsClient": { "type": "Transitive", @@ -134,34 +134,33 @@ }, "Microsoft.Extensions.DependencyInjection.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==" + "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.0", - "contentHash": "P9SoBuVZhJPpALZmSq72aQEb9ryP67EdquaCZGXGrrcASTNHYdrUhnpgSwIipgM5oVC+dKpRXg5zxobmF9xr5g==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0" + "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.0", - "contentHash": "AT2qqos3IgI09ok36Qag9T8bb6kHJ3uT9Q5ki6CySybFsK6/9JbvQAgAHf1pVEjST0/N4JaFaCbm40R5edffwg==" + "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.0", - "contentHash": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging.Configuration": { @@ -231,8 +230,8 @@ }, "Microsoft.Extensions.Options": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "resolved": "8.0.2", + "contentHash": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", "dependencies": { "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", "Microsoft.Extensions.Primitives": "8.0.0" @@ -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": "20.0.4", - "contentHash": "Vv3DffYCM/DEQ7+9Dn7ydq852WSVtdeoLNlztIqaMAl4o6aALyAJQRTQ30d/3D7BVf5pALsGm22HYb4Y6h8xvw==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4", - "TestableIO.System.IO.Abstractions.Wrappers": "20.0.4" + "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": "20.0.4", - "contentHash": "zvuE3an8qmEjlz72ZKyW/gBZprR0TMTDxuw77i1OXi5wEagXRhHwP4lOaLvHIXNlwyCAmdmei6iLHsfsZcuUAA==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "20.0.4", - "contentHash": "LbVaZauZfCkcGmHyPhQ2yiKv5GQqTvMViPYd3NjU1tGxp0N2p7Oc6Q/2trN6ZNIZCr42ujJdYUB63hE4mtsHRQ==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4" + "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 bac38a709..3dc8c69d1 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 69dbbbd77..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.23.1, )", - "resolved": "2.23.1", - "contentHash": "kidqCwGBuLBx2IcW4os3J6zsp9yaUWm7Sp8G08Nm2RVRSAf0cJXfsynl2wRWpHh0HgfIzzwkevP/qhfsKfu8bQ==", + "requested": "[2.30.0, )", + "resolved": "2.30.0", + "contentHash": "BCG8cNF0+U3h5f/O9fu3ktrYhoESBDems1w06PExfYrn2KjHBHCBdvBRY1cIbysnZVjQAJjGtFV9XgW+hXt7Hg==", "dependencies": { "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "2.23.1", - "MongoDB.Driver.Core": "2.23.1", - "MongoDB.Libmongocrypt": "1.8.0" + "MongoDB.Bson": "2.30.0", + "MongoDB.Driver.Core": "2.30.0", + "MongoDB.Libmongocrypt": "1.12.0" } }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "5KQ6zQDNRduora6L8lGQcRikLNLj0s4XjctGuUX24uBRzHMMKv6BatVDSBWRs96riz7PJj7Efn3yOFhfYXgnWg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", @@ -118,34 +118,33 @@ }, "Microsoft.Extensions.DependencyInjection.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==" + "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.0", - "contentHash": "P9SoBuVZhJPpALZmSq72aQEb9ryP67EdquaCZGXGrrcASTNHYdrUhnpgSwIipgM5oVC+dKpRXg5zxobmF9xr5g==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0" + "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.0", - "contentHash": "AT2qqos3IgI09ok36Qag9T8bb6kHJ3uT9Q5ki6CySybFsK6/9JbvQAgAHf1pVEjST0/N4JaFaCbm40R5edffwg==" + "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.0", - "contentHash": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging.Configuration": { @@ -215,8 +214,8 @@ }, "Microsoft.Extensions.Options": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "resolved": "8.0.2", + "contentHash": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", "dependencies": { "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", "Microsoft.Extensions.Primitives": "8.0.0" @@ -259,13 +258,13 @@ }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.2", - "contentHash": "iQsD13BAnpbkv1xIVS4cRT2ZXjtcvHJFXlzvTaXjSEEtgGRR7f/IW/9smM2mZlPAyjmRdzk6hyye2vw6rl/tTw==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "20.0.4" + "System.IO.Abstractions": "21.3.1" } }, "Mongo.Migration": { @@ -291,8 +290,8 @@ }, "MongoDB.Bson": { "type": "Transitive", - "resolved": "2.23.1", - "contentHash": "IX9tycM35xK5hFwnU+rzharPJOtKYtON6E6Lp2nwOVjh40TUcS/HYToEEWZkLgqKNMCfYPK3Fz3QUCxzhkQRGA==", + "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.23.1", - "contentHash": "K8LMdnVgT82vdbSllv8VzjPOLa9k5rLcCBd1fG45z+QGJNPWzAFW5lLgLJQ7xXuJgQIwvP1DBx6X6ecWBtox7g==", + "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.23.1", - "MongoDB.Libmongocrypt": "1.8.0", + "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.0", - "contentHash": "fgNw8Dxpkq7mpoaAYes8cfnPRzvFIoB8oL9GPXwi3op/rONftl0WAeg4akRLcxfoVuUvuUO2wGoVBr3JzJ7Svw==" + "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": "20.0.4", - "contentHash": "Vv3DffYCM/DEQ7+9Dn7ydq852WSVtdeoLNlztIqaMAl4o6aALyAJQRTQ30d/3D7BVf5pALsGm22HYb4Y6h8xvw==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4", - "TestableIO.System.IO.Abstractions.Wrappers": "20.0.4" + "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": "20.0.4", - "contentHash": "zvuE3an8qmEjlz72ZKyW/gBZprR0TMTDxuw77i1OXi5wEagXRhHwP4lOaLvHIXNlwyCAmdmei6iLHsfsZcuUAA==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "20.0.4", - "contentHash": "LbVaZauZfCkcGmHyPhQ2yiKv5GQqTvMViPYd3NjU1tGxp0N2p7Oc6Q/2trN6ZNIZCr42ujJdYUB63hE4mtsHRQ==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "ZstdSharp.Port": { @@ -718,7 +712,7 @@ "monai.deploy.workflowmanager.taskmanager.api": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.2, )", + "Monai.Deploy.Messaging": "[2.0.4, )", "Mongo.Migration": "[3.1.4, )", "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 e5f1f7ec7..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.3.0", - "contentHash": "5KQ6zQDNRduora6L8lGQcRikLNLj0s4XjctGuUX24uBRzHMMKv6BatVDSBWRs96riz7PJj7Efn3yOFhfYXgnWg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.300.29", - "contentHash": "BMvjbKNzA7Y1eFbhnRbexaUKZ6FwR/hAdvmPYYYA35kw0Ig5E12shMiCEqtRL1EQYVpAqmLdSPZNxV4hu5Ncng==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.30", - "contentHash": "hsCHGNTf1UeNEVBrjuFsWQfylcqzrBn27bfidgr0VVCKc82dz/PEFIrSFzXuEOjvRSiO5wji/V7x9bGyf1aJ6A==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.300.29, 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.0", - "contentHash": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==" + "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.0", - "contentHash": "P9SoBuVZhJPpALZmSq72aQEb9ryP67EdquaCZGXGrrcASTNHYdrUhnpgSwIipgM5oVC+dKpRXg5zxobmF9xr5g==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0" + "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.0", - "contentHash": "AT2qqos3IgI09ok36Qag9T8bb6kHJ3uT9Q5ki6CySybFsK6/9JbvQAgAHf1pVEjST0/N4JaFaCbm40R5edffwg==" + "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.0", - "contentHash": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging.Configuration": { @@ -235,8 +234,8 @@ }, "Microsoft.Extensions.Options": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "resolved": "8.0.2", + "contentHash": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", "dependencies": { "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", "Microsoft.Extensions.Primitives": "8.0.0" @@ -270,32 +269,32 @@ }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.2", - "contentHash": "iQsD13BAnpbkv1xIVS4cRT2ZXjtcvHJFXlzvTaXjSEEtgGRR7f/IW/9smM2mZlPAyjmRdzk6hyye2vw6rl/tTw==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "20.0.4" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage": { "type": "Transitive", - "resolved": "1.0.0", - "contentHash": "YN087swDoJJCj+UgPVWzsraxL730ajg8OJdEahgPvZFe4quFlfhWIGLweVKRNhSvrN/CV87/m+noLJu7jSEaww==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.30", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", - "Monai.Deploy.Storage.S3Policy": "1.0.0", - "System.IO.Abstractions": "20.0.4" + "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.0", - "contentHash": "I8My4nZEt1vA2wDvti84CfhK+TnyW60E/50Cb+xyhzdrlqWpWr/Xbwhl1ocELAPDeRsakECK4cikrNYLbpp+pQ==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, @@ -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": "20.0.4", - "contentHash": "Vv3DffYCM/DEQ7+9Dn7ydq852WSVtdeoLNlztIqaMAl4o6aALyAJQRTQ30d/3D7BVf5pALsGm22HYb4Y6h8xvw==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4", - "TestableIO.System.IO.Abstractions.Wrappers": "20.0.4" + "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,35 +737,35 @@ }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "20.0.4", - "contentHash": "zvuE3an8qmEjlz72ZKyW/gBZprR0TMTDxuw77i1OXi5wEagXRhHwP4lOaLvHIXNlwyCAmdmei6iLHsfsZcuUAA==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "20.0.4", - "contentHash": "LbVaZauZfCkcGmHyPhQ2yiKv5GQqTvMViPYd3NjU1tGxp0N2p7Oc6Q/2trN6ZNIZCr42ujJdYUB63hE4mtsHRQ==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "monai.deploy.workflowmanager.common.configuration": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.2, )", - "Monai.Deploy.Storage": "[1.0.0, )" + "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.2, )", + "Monai.Deploy.Messaging": "[2.0.4, )", "Mongo.Migration": "[3.1.4, )", "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 98274b92c..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 @@ -28,7 +28,7 @@ - + diff --git a/src/TaskManager/Plug-ins/Argo/packages.lock.json b/src/TaskManager/Plug-ins/Argo/packages.lock.json index 72d2fe812..da61ed5b8 100644 --- a/src/TaskManager/Plug-ins/Argo/packages.lock.json +++ b/src/TaskManager/Plug-ins/Argo/packages.lock.json @@ -17,32 +17,32 @@ }, "Microsoft.Extensions.ApiDescription.Client": { "type": "Direct", - "requested": "[8.0.0, )", - "resolved": "8.0.0", - "contentHash": "UadNHPNDlovYULAk7Tav9ZiY28+tkZaWuWUmuYoe61wrcI5zQIZqJcVyDhoYDWCZQR/2HxcMrJNlqfJC7jXa8Q==" + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "R7QsrA6RwSgAgjhV8zcGOEFWqvsAaKVk3WPwkXIoKaB91dFNp+IDwh9vH+WqTIJTg5DIKVocCokHXAjyTPD+2Q==" }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "5KQ6zQDNRduora6L8lGQcRikLNLj0s4XjctGuUX24uBRzHMMKv6BatVDSBWRs96riz7PJj7Efn3yOFhfYXgnWg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.300.29", - "contentHash": "BMvjbKNzA7Y1eFbhnRbexaUKZ6FwR/hAdvmPYYYA35kw0Ig5E12shMiCEqtRL1EQYVpAqmLdSPZNxV4hu5Ncng==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.30", - "contentHash": "hsCHGNTf1UeNEVBrjuFsWQfylcqzrBn27bfidgr0VVCKc82dz/PEFIrSFzXuEOjvRSiO5wji/V7x9bGyf1aJ6A==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.300.29, 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,19 +51,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" } }, @@ -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.0", - "contentHash": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==" + "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.0", - "contentHash": "P9SoBuVZhJPpALZmSq72aQEb9ryP67EdquaCZGXGrrcASTNHYdrUhnpgSwIipgM5oVC+dKpRXg5zxobmF9xr5g==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0" + "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.0", - "contentHash": "AT2qqos3IgI09ok36Qag9T8bb6kHJ3uT9Q5ki6CySybFsK6/9JbvQAgAHf1pVEjST0/N4JaFaCbm40R5edffwg==" + "resolved": "8.0.14", + "contentHash": "se5sdveMiA3PUOWchOZXY/sGA50MrJ/Mg/G6CdQBtyA4MLySNRilVCi23YT90RAwqvI2uQEk5+buxYdpAfuwpA==" }, "Microsoft.Extensions.FileProviders.Abstractions": { "type": "Transitive", @@ -214,14 +213,14 @@ }, "Microsoft.Extensions.Hosting.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "resolved": "8.0.1", + "contentHash": "nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Http": { @@ -248,10 +247,10 @@ }, "Microsoft.Extensions.Logging.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging.Configuration": { @@ -288,8 +287,8 @@ }, "Microsoft.Extensions.Options": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "resolved": "8.0.2", + "contentHash": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", "dependencies": { "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", "Microsoft.Extensions.Primitives": "8.0.0" @@ -352,32 +351,32 @@ }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.2", - "contentHash": "iQsD13BAnpbkv1xIVS4cRT2ZXjtcvHJFXlzvTaXjSEEtgGRR7f/IW/9smM2mZlPAyjmRdzk6hyye2vw6rl/tTw==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "20.0.4" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage": { "type": "Transitive", - "resolved": "1.0.0", - "contentHash": "YN087swDoJJCj+UgPVWzsraxL730ajg8OJdEahgPvZFe4quFlfhWIGLweVKRNhSvrN/CV87/m+noLJu7jSEaww==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.30", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", - "Monai.Deploy.Storage.S3Policy": "1.0.0", - "System.IO.Abstractions": "20.0.4" + "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.0", - "contentHash": "I8My4nZEt1vA2wDvti84CfhK+TnyW60E/50Cb+xyhzdrlqWpWr/Xbwhl1ocELAPDeRsakECK4cikrNYLbpp+pQ==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, @@ -596,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", @@ -642,11 +644,11 @@ }, "System.IO.Abstractions": { "type": "Transitive", - "resolved": "20.0.4", - "contentHash": "Vv3DffYCM/DEQ7+9Dn7ydq852WSVtdeoLNlztIqaMAl4o6aALyAJQRTQ30d/3D7BVf5pALsGm22HYb4Y6h8xvw==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4", - "TestableIO.System.IO.Abstractions.Wrappers": "20.0.4" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "System.IO.FileSystem": { @@ -770,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", @@ -789,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", @@ -845,15 +837,15 @@ }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "20.0.4", - "contentHash": "zvuE3an8qmEjlz72ZKyW/gBZprR0TMTDxuw77i1OXi5wEagXRhHwP4lOaLvHIXNlwyCAmdmei6iLHsfsZcuUAA==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "20.0.4", - "contentHash": "LbVaZauZfCkcGmHyPhQ2yiKv5GQqTvMViPYd3NjU1tGxp0N2p7Oc6Q/2trN6ZNIZCr42ujJdYUB63hE4mtsHRQ==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "YamlDotNet": { @@ -864,21 +856,21 @@ "monai.deploy.workflowmanager.common.configuration": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.2, )", - "Monai.Deploy.Storage": "[1.0.0, )" + "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.2, )", + "Monai.Deploy.Messaging": "[2.0.4, )", "Mongo.Migration": "[3.1.4, )", "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 a187adcf8..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/packages.lock.json b/src/TaskManager/TaskManager/packages.lock.json index 9eebde74b..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.0, )", - "resolved": "8.0.0", - "contentHash": "0YjJlCwkwulozPxFCRcJAl2CdjU5e5ekj4/BQsA6GZbzRxwtN3FIg7LJcWUUgMdwqDoe+6SKFBRnSRpfLY4owA==", + "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.0, )", - "resolved": "8.0.0", - "contentHash": "/e5+eBvY759xiZJO+y1lHi4VzXqbDzTJSyCtKpaj3Ko2JAFQjiCOJ0ZHk2i4g4HpoSdXmzEXQsjr6dUX9U0/JA==", + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "322+FAPeMslfd320h8sASJSJ3h5s4dVr6W0xypr28Vz/cbMFjVCLHOou418cc2Xh0kXRzMy3irD3jBzSA+EiDA==", "dependencies": { - "Microsoft.AspNetCore.JsonPatch": "8.0.0", + "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.2, )", - "resolved": "2.0.2", - "contentHash": "iQsD13BAnpbkv1xIVS4cRT2ZXjtcvHJFXlzvTaXjSEEtgGRR7f/IW/9smM2mZlPAyjmRdzk6hyye2vw6rl/tTw==", + "requested": "[2.0.4, )", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "20.0.4" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Messaging.RabbitMQ": { "type": "Direct", - "requested": "[2.0.2, )", - "resolved": "2.0.2", - "contentHash": "nrMwCJloWpOpPJaYvKJzZIWb3B0B5+Ktz4SP2NApbmreiEI88m9Gab+Q6GuwNvFB+nrtJFDAl/gtdHwV251rcw==", + "requested": "[2.0.4, )", + "resolved": "2.0.4", + "contentHash": "tmEERdnqJq1STVGx30+wVyj7AtvtT8K2j/59lSiZ7k58ZdRku601Gs6k1KZ/sfGeobCjaB4gI7GROxK+lN6gbg==", "dependencies": { - "Monai.Deploy.Messaging": "2.0.2", - "Polly": "8.2.1", + "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.0, )", - "resolved": "1.0.0", - "contentHash": "o6Lq9rshOJ3sxz4lIfl14Zn7+YXvXXg2Jpndtnnx4Ez1RDSTDu2Zf08lEgFHTmwAML1e4fsVVm16LaXv3h3L3A==", + "requested": "[1.0.2, )", + "resolved": "1.0.2", + "contentHash": "H73iUS64UwZXK8ZxNUc3DvokEcptpcoYgY+FMJGlotCffGhqrK8iJ18THR0gg9Io5UgIv24mdu1jbUn/Cz2rhA==", "dependencies": { - "Minio": "6.0.1", - "Monai.Deploy.Storage": "1.0.0", - "Monai.Deploy.Storage.S3Policy": "1.0.0" + "Minio": "6.0.2", + "Monai.Deploy.Storage": "1.0.2", + "Monai.Deploy.Storage.S3Policy": "1.0.2" } }, "NLog": { "type": "Direct", - "requested": "[5.2.8, )", - "resolved": "5.2.8", - "contentHash": "jAIELkWBs1CXFPp986KSGpDFQZHCFccO+LMbKBTTNm42KifaI1mYzFMFQQfuGmGMTrCx0TFPhDjHDE4cLAZWiQ==" + "requested": "[5.4.0, )", + "resolved": "5.4.0", + "contentHash": "LwMcGSW3soF3/SL68rlJN3Eh3ktrAPycC3zZR/07OYBPraZUu0bygEC7kIN10lUQgMXT4s84Fi1chglGdGrQEg==" }, "NLog.Web.AspNetCore": { "type": "Direct", - "requested": "[5.3.8, )", - "resolved": "5.3.8", - "contentHash": "Rt2OCulpAF6rSrZWZzPgHikAI8SDKkq3/52xA/uJ4JtmNjoizULN/IBYtYlZojbPbXiFm3uadOO2rOvvMhjXBQ==", + "requested": "[5.4.0, )", + "resolved": "5.4.0", + "contentHash": "Le6rbipSqeGVygbLGgRwZNMsbjJ+YnoAMJdZVhgjQimXwmYbDNkSswK6Mb32bKoC5aIg5mhw+hpAmgWdegs4Eg==", "dependencies": { - "NLog.Extensions.Logging": "5.3.8" + "NLog.Extensions.Logging": "5.4.0" } }, "StyleCop.Analyzers": { @@ -95,38 +95,38 @@ }, "Swashbuckle.AspNetCore": { "type": "Direct", - "requested": "[6.5.0, )", - "resolved": "6.5.0", - "contentHash": "FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==", + "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.5.0", - "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0", - "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0" + "Swashbuckle.AspNetCore.Swagger": "8.0.0", + "Swashbuckle.AspNetCore.SwaggerGen": "8.0.0", + "Swashbuckle.AspNetCore.SwaggerUI": "8.0.0" } }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "5KQ6zQDNRduora6L8lGQcRikLNLj0s4XjctGuUX24uBRzHMMKv6BatVDSBWRs96riz7PJj7Efn3yOFhfYXgnWg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.300.29", - "contentHash": "BMvjbKNzA7Y1eFbhnRbexaUKZ6FwR/hAdvmPYYYA35kw0Ig5E12shMiCEqtRL1EQYVpAqmLdSPZNxV4hu5Ncng==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.30", - "contentHash": "hsCHGNTf1UeNEVBrjuFsWQfylcqzrBn27bfidgr0VVCKc82dz/PEFIrSFzXuEOjvRSiO5wji/V7x9bGyf1aJ6A==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.300.29, 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 +148,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" } }, @@ -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.0", - "contentHash": "klQdb/9+j0u8MDjoqHEgDCPz8GRhfsbRVvZIM3glFqjs8uY7S1hS9RvKZuz8o4dS9NsEpFp4Jccd8CQuIYHK0g==", + "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.0", - "contentHash": "UadNHPNDlovYULAk7Tav9ZiY28+tkZaWuWUmuYoe61wrcI5zQIZqJcVyDhoYDWCZQR/2HxcMrJNlqfJC7jXa8Q==" + "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.0", - "contentHash": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==" + "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.0", - "contentHash": "P9SoBuVZhJPpALZmSq72aQEb9ryP67EdquaCZGXGrrcASTNHYdrUhnpgSwIipgM5oVC+dKpRXg5zxobmF9xr5g==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0" + "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.0", - "contentHash": "AT2qqos3IgI09ok36Qag9T8bb6kHJ3uT9Q5ki6CySybFsK6/9JbvQAgAHf1pVEjST0/N4JaFaCbm40R5edffwg==" + "resolved": "8.0.14", + "contentHash": "se5sdveMiA3PUOWchOZXY/sGA50MrJ/Mg/G6CdQBtyA4MLySNRilVCi23YT90RAwqvI2uQEk5+buxYdpAfuwpA==" }, "Microsoft.Extensions.FileProviders.Abstractions": { "type": "Transitive", @@ -355,14 +354,14 @@ }, "Microsoft.Extensions.Hosting.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "resolved": "8.0.1", + "contentHash": "nHwq9aPBdBPYXPti6wYEEfgXddfBrYC+CQLn+qISiwQq5tpfaqDZSKOJNxoe9rfQxGf1c+2wC/qWFe1QYJPYqw==", "dependencies": { "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.1", "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Http": { @@ -377,34 +376,34 @@ }, "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.0", - "contentHash": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + "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" } }, @@ -433,8 +432,8 @@ }, "Microsoft.Extensions.Options": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "resolved": "8.0.2", + "contentHash": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", "dependencies": { "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", "Microsoft.Extensions.Primitives": "8.0.0" @@ -459,49 +458,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": { @@ -516,8 +515,8 @@ }, "Microsoft.OpenApi": { "type": "Transitive", - "resolved": "1.2.3", - "contentHash": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==" + "resolved": "1.6.23", + "contentHash": "tZ1I0KXnn98CWuV8cpI247A17jaY+ILS9vvF7yhI0uPPEqF4P1d7BWL5Uwtel10w9NucllHB3nTkfYTAcHAh8g==" }, "Microsoft.Win32.Registry": { "type": "Transitive", @@ -530,33 +529,33 @@ }, "Minio": { "type": "Transitive", - "resolved": "6.0.1", - "contentHash": "uavo/zTpUzHLqnB0nyAk6E/2THLRPvZ59Md7IkLKXkAFiX//K2knVK2+dSHDNN2uAUqCvLqO+cM+s9VGBWbIKQ==", + "resolved": "6.0.2", + "contentHash": "4Od4uGANX5X0AL90WV0viBNzpE2+jDHro6CGvR4//MVj5SiTTwR5SUikXgd/2G2PtYyXw4b/IBpo7Kt5cCCndA==", "dependencies": { "CommunityToolkit.HighPerformance": "8.2.2", - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging": "7.0.0", - "System.IO.Hashing": "7.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "System.IO.Hashing": "8.0.0", "System.Reactive": "6.0.0" } }, "Monai.Deploy.Storage": { "type": "Transitive", - "resolved": "1.0.0", - "contentHash": "YN087swDoJJCj+UgPVWzsraxL730ajg8OJdEahgPvZFe4quFlfhWIGLweVKRNhSvrN/CV87/m+noLJu7jSEaww==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.30", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", - "Monai.Deploy.Storage.S3Policy": "1.0.0", - "System.IO.Abstractions": "20.0.4" + "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.0", - "contentHash": "I8My4nZEt1vA2wDvti84CfhK+TnyW60E/50Cb+xyhzdrlqWpWr/Xbwhl1ocELAPDeRsakECK4cikrNYLbpp+pQ==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, @@ -583,8 +582,8 @@ }, "MongoDB.Bson": { "type": "Transitive", - "resolved": "2.23.1", - "contentHash": "IX9tycM35xK5hFwnU+rzharPJOtKYtON6E6Lp2nwOVjh40TUcS/HYToEEWZkLgqKNMCfYPK3Fz3QUCxzhkQRGA==", + "resolved": "2.30.0", + "contentHash": "Gg0TQUT3IEntcqdug5a9P6d8iwL5CqOpQjVBCq1hxTbkjxdGdY6a2CPv7II44AO9GYUnORYsS6dDME2b7aqYyg==", "dependencies": { "System.Memory": "4.5.5", "System.Runtime.CompilerServices.Unsafe": "5.0.0" @@ -592,25 +591,25 @@ }, "MongoDB.Driver": { "type": "Transitive", - "resolved": "2.23.1", - "contentHash": "kidqCwGBuLBx2IcW4os3J6zsp9yaUWm7Sp8G08Nm2RVRSAf0cJXfsynl2wRWpHh0HgfIzzwkevP/qhfsKfu8bQ==", + "resolved": "2.30.0", + "contentHash": "BCG8cNF0+U3h5f/O9fu3ktrYhoESBDems1w06PExfYrn2KjHBHCBdvBRY1cIbysnZVjQAJjGtFV9XgW+hXt7Hg==", "dependencies": { "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "2.23.1", - "MongoDB.Driver.Core": "2.23.1", - "MongoDB.Libmongocrypt": "1.8.0" + "MongoDB.Bson": "2.30.0", + "MongoDB.Driver.Core": "2.30.0", + "MongoDB.Libmongocrypt": "1.12.0" } }, "MongoDB.Driver.Core": { "type": "Transitive", - "resolved": "2.23.1", - "contentHash": "K8LMdnVgT82vdbSllv8VzjPOLa9k5rLcCBd1fG45z+QGJNPWzAFW5lLgLJQ7xXuJgQIwvP1DBx6X6ecWBtox7g==", + "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.23.1", - "MongoDB.Libmongocrypt": "1.8.0", + "MongoDB.Bson": "2.30.0", + "MongoDB.Libmongocrypt": "1.12.0", "SharpCompress": "0.30.1", "Snappier": "1.0.0", "System.Buffers": "4.5.1", @@ -619,8 +618,8 @@ }, "MongoDB.Libmongocrypt": { "type": "Transitive", - "resolved": "1.8.0", - "contentHash": "fgNw8Dxpkq7mpoaAYes8cfnPRzvFIoB8oL9GPXwi3op/rONftl0WAeg4akRLcxfoVuUvuUO2wGoVBr3JzJ7Svw==" + "resolved": "1.12.0", + "contentHash": "B1X51jrtNacKvxKoaqWeknYeJfQS5aWf6BmVLT5JZerz3AUXFzv8edPskJYqBc3kLy1J2PWzMqqsnyb9g8FtcA==" }, "Newtonsoft.Json": { "type": "Transitive", @@ -637,26 +636,26 @@ }, "NLog.Extensions.Logging": { "type": "Transitive", - "resolved": "5.3.8", - "contentHash": "6VD0lyeokWltL6j8lO7mS7v7lbuO/qn0F7kdvhKhEx1JvFyD39nzohOK3JvkVh4Nn3mrcMDCyDxvTvmiW55jQg==", + "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.2.8" + "NLog": "5.4.0" } }, "Polly": { "type": "Transitive", - "resolved": "8.2.1", - "contentHash": "tVHvP5Z0fNoZCE9mpKAsh0IaValwsTGPrqjlWqkWR/Gpl5jL05HWC/AVGSL+jkAqkl1Jn7uBUOArnRD+dK5PfQ==", + "resolved": "8.5.2", + "contentHash": "vbXsGgkG86nG+TOwY+SmtrGrRHmHH0DQaxtILx//d3Dz/ocJ8izSNYzdvU2gEtWa/LDD8zJLvD3HdjEkdlvkhg==", "dependencies": { - "Polly.Core": "8.2.1" + "Polly.Core": "8.5.2" } }, "Polly.Core": { "type": "Transitive", - "resolved": "8.2.1", - "contentHash": "/Z3EspfWBdTla4I9IAcQn32/7kB5WS3rSnOYloz8YlVyClu8h7uuYf4pfUvffOYVbxmDX/mFRfxwzqW2Zs96ZA==" + "resolved": "8.5.2", + "contentHash": "1MJKdxv4zwDmiWvYvVN24DsrWUfgQ4F83voH8bhbtLMdPuGy8CfTUzsgQhvyrl1a7hrM6f/ydwLVdVUI0xooUw==" }, "prometheus-net": { "type": "Transitive", @@ -762,24 +761,24 @@ }, "Swashbuckle.AspNetCore.Swagger": { "type": "Transitive", - "resolved": "6.5.0", - "contentHash": "XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==", + "resolved": "8.0.0", + "contentHash": "+8Y4pVTWbnzotIk6d6rcwsHGpCchPDqqrvYkyGlI3go+pFaKM+4eX30iCyI0hvr0RMtObJCFhK6aDtlQFbEF1g==", "dependencies": { - "Microsoft.OpenApi": "1.2.3" + "Microsoft.OpenApi": "1.6.23" } }, "Swashbuckle.AspNetCore.SwaggerGen": { "type": "Transitive", - "resolved": "6.5.0", - "contentHash": "Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==", + "resolved": "8.0.0", + "contentHash": "skCeIQ93yMcUm1PQby5qitFM6KLIlLMj4/i8JHy86x2OFzxTNaaas2kUg6rNV3JvucFvYCNyImg7NMtZHErSzQ==", "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "6.5.0" + "Swashbuckle.AspNetCore.Swagger": "8.0.0" } }, "Swashbuckle.AspNetCore.SwaggerUI": { "type": "Transitive", - "resolved": "6.5.0", - "contentHash": "OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==" + "resolved": "8.0.0", + "contentHash": "IMqmgclFiZL2QIfopOmWYofZzckrl+SdMt1h4mKC0jc94F+uzt3IHA3YFC0CGlwBqTTSnxHqNUKomNTeAhZbYA==" }, "System.Buffers": { "type": "Transitive", @@ -836,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", @@ -863,11 +857,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": { @@ -884,11 +878,11 @@ }, "System.IO.Abstractions": { "type": "Transitive", - "resolved": "20.0.4", - "contentHash": "Vv3DffYCM/DEQ7+9Dn7ydq852WSVtdeoLNlztIqaMAl4o6aALyAJQRTQ30d/3D7BVf5pALsGm22HYb4Y6h8xvw==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4", - "TestableIO.System.IO.Abstractions.Wrappers": "20.0.4" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "System.IO.FileSystem": { @@ -916,8 +910,8 @@ }, "System.IO.Hashing": { "type": "Transitive", - "resolved": "7.0.0", - "contentHash": "sDnWM0N3AMCa86LrKTWeF3BZLD2sgWyYUc7HL6z4+xyDZNQRwzmxbo4qP2rX2MqC+Sy1/gOSRDah5ltxY5jPxw==" + "resolved": "8.0.0", + "contentHash": "ne1843evDugl0md7Fjzy6QjJrzsjh46ZKbhf8GwBXb5f/gw97J4bxMs0NQKifDuThh/f0bZ0e62NPl1jzTuRqA==" }, "System.Memory": { "type": "Transitive", @@ -974,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", @@ -1036,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", @@ -1055,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", @@ -1116,15 +1100,15 @@ }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "20.0.4", - "contentHash": "zvuE3an8qmEjlz72ZKyW/gBZprR0TMTDxuw77i1OXi5wEagXRhHwP4lOaLvHIXNlwyCAmdmei6iLHsfsZcuUAA==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "20.0.4", - "contentHash": "LbVaZauZfCkcGmHyPhQ2yiKv5GQqTvMViPYd3NjU1tGxp0N2p7Oc6Q/2trN6ZNIZCr42ujJdYUB63hE4mtsHRQ==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "YamlDotNet": { @@ -1140,15 +1124,15 @@ "monai.deploy.workflowmanager.common.configuration": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.2, )", - "Monai.Deploy.Storage": "[1.0.0, )" + "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": { @@ -1162,7 +1146,7 @@ "monai.deploy.workflowmanager.taskmanager.api": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.2, )", + "Monai.Deploy.Messaging": "[2.0.4, )", "Mongo.Migration": "[3.1.4, )", "MongoDB.Bson": "[2.23.1, )" } @@ -1171,7 +1155,7 @@ "type": "Project", "dependencies": { "KubernetesClient": "[12.1.1, )", - "Microsoft.Extensions.ApiDescription.Client": "[8.0.0, )", + "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, )" @@ -1181,7 +1165,7 @@ "type": "Project", "dependencies": { "Monai.Deploy.WorkflowManager.TaskManager.API": "[1.0.0, )", - "MongoDB.Driver": "[2.23.1, )" + "MongoDB.Driver": "[2.30.0, )" } }, "monai.deploy.workflowmanager.taskmanager.docker": { diff --git a/src/WorkflowManager/Contracts/Monai.Deploy.WorkflowManager.Contracts.csproj b/src/WorkflowManager/Contracts/Monai.Deploy.WorkflowManager.Contracts.csproj index 88fddf759..6b5e52071 100644 --- a/src/WorkflowManager/Contracts/Monai.Deploy.WorkflowManager.Contracts.csproj +++ b/src/WorkflowManager/Contracts/Monai.Deploy.WorkflowManager.Contracts.csproj @@ -31,7 +31,7 @@ - + diff --git a/src/WorkflowManager/Database/Monai.Deploy.WorkflowManager.Database.csproj b/src/WorkflowManager/Database/Monai.Deploy.WorkflowManager.Database.csproj index ce796cbcb..8fb280f32 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/packages.lock.json b/src/WorkflowManager/Database/packages.lock.json index 35e0c3ad6..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.23.1, )", - "resolved": "2.23.1", - "contentHash": "kidqCwGBuLBx2IcW4os3J6zsp9yaUWm7Sp8G08Nm2RVRSAf0cJXfsynl2wRWpHh0HgfIzzwkevP/qhfsKfu8bQ==", + "requested": "[2.30.0, )", + "resolved": "2.30.0", + "contentHash": "BCG8cNF0+U3h5f/O9fu3ktrYhoESBDems1w06PExfYrn2KjHBHCBdvBRY1cIbysnZVjQAJjGtFV9XgW+hXt7Hg==", "dependencies": { "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "2.23.1", - "MongoDB.Driver.Core": "2.23.1", - "MongoDB.Libmongocrypt": "1.8.0" + "MongoDB.Bson": "2.30.0", + "MongoDB.Driver.Core": "2.30.0", + "MongoDB.Libmongocrypt": "1.12.0" } }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "5KQ6zQDNRduora6L8lGQcRikLNLj0s4XjctGuUX24uBRzHMMKv6BatVDSBWRs96riz7PJj7Efn3yOFhfYXgnWg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", @@ -140,34 +140,33 @@ }, "Microsoft.Extensions.DependencyInjection.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==" + "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.0", - "contentHash": "P9SoBuVZhJPpALZmSq72aQEb9ryP67EdquaCZGXGrrcASTNHYdrUhnpgSwIipgM5oVC+dKpRXg5zxobmF9xr5g==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0" + "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.0", - "contentHash": "AT2qqos3IgI09ok36Qag9T8bb6kHJ3uT9Q5ki6CySybFsK6/9JbvQAgAHf1pVEjST0/N4JaFaCbm40R5edffwg==" + "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.0", - "contentHash": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging.Configuration": { @@ -237,8 +236,8 @@ }, "Microsoft.Extensions.Options": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "resolved": "8.0.2", + "contentHash": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", "dependencies": { "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", "Microsoft.Extensions.Primitives": "8.0.0" @@ -281,19 +280,19 @@ }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.2", - "contentHash": "iQsD13BAnpbkv1xIVS4cRT2ZXjtcvHJFXlzvTaXjSEEtgGRR7f/IW/9smM2mZlPAyjmRdzk6hyye2vw6rl/tTw==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "20.0.4" + "System.IO.Abstractions": "21.3.1" } }, "MongoDB.Bson": { "type": "Transitive", - "resolved": "2.23.1", - "contentHash": "IX9tycM35xK5hFwnU+rzharPJOtKYtON6E6Lp2nwOVjh40TUcS/HYToEEWZkLgqKNMCfYPK3Fz3QUCxzhkQRGA==", + "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.23.1", - "contentHash": "K8LMdnVgT82vdbSllv8VzjPOLa9k5rLcCBd1fG45z+QGJNPWzAFW5lLgLJQ7xXuJgQIwvP1DBx6X6ecWBtox7g==", + "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.23.1", - "MongoDB.Libmongocrypt": "1.8.0", + "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.0", - "contentHash": "fgNw8Dxpkq7mpoaAYes8cfnPRzvFIoB8oL9GPXwi3op/rONftl0WAeg4akRLcxfoVuUvuUO2wGoVBr3JzJ7Svw==" + "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": "20.0.4", - "contentHash": "Vv3DffYCM/DEQ7+9Dn7ydq852WSVtdeoLNlztIqaMAl4o6aALyAJQRTQ30d/3D7BVf5pALsGm22HYb4Y6h8xvw==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4", - "TestableIO.System.IO.Abstractions.Wrappers": "20.0.4" + "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": "20.0.4", - "contentHash": "zvuE3an8qmEjlz72ZKyW/gBZprR0TMTDxuw77i1OXi5wEagXRhHwP4lOaLvHIXNlwyCAmdmei6iLHsfsZcuUAA==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "20.0.4", - "contentHash": "LbVaZauZfCkcGmHyPhQ2yiKv5GQqTvMViPYd3NjU1tGxp0N2p7Oc6Q/2trN6ZNIZCr42ujJdYUB63hE4mtsHRQ==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "ZstdSharp.Port": { @@ -719,7 +713,7 @@ "monai.deploy.workflowmanager.contracts": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.2, )", + "Monai.Deploy.Messaging": "[2.0.4, )", "Mongo.Migration": "[3.1.4, )", "MongoDB.Bson": "[2.23.1, )" } diff --git a/src/WorkflowManager/Logging/packages.lock.json b/src/WorkflowManager/Logging/packages.lock.json index 1342ca84c..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.3.0", - "contentHash": "5KQ6zQDNRduora6L8lGQcRikLNLj0s4XjctGuUX24uBRzHMMKv6BatVDSBWRs96riz7PJj7Efn3yOFhfYXgnWg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "DnsClient": { "type": "Transitive", @@ -90,34 +90,33 @@ }, "Microsoft.Extensions.DependencyInjection.Abstractions": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==" + "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.0", - "contentHash": "P9SoBuVZhJPpALZmSq72aQEb9ryP67EdquaCZGXGrrcASTNHYdrUhnpgSwIipgM5oVC+dKpRXg5zxobmF9xr5g==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0" + "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.0", - "contentHash": "AT2qqos3IgI09ok36Qag9T8bb6kHJ3uT9Q5ki6CySybFsK6/9JbvQAgAHf1pVEjST0/N4JaFaCbm40R5edffwg==" + "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.0", - "contentHash": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging.Configuration": { @@ -187,8 +186,8 @@ }, "Microsoft.Extensions.Options": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "resolved": "8.0.2", + "contentHash": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", "dependencies": { "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", "Microsoft.Extensions.Primitives": "8.0.0" @@ -222,13 +221,13 @@ }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.2", - "contentHash": "iQsD13BAnpbkv1xIVS4cRT2ZXjtcvHJFXlzvTaXjSEEtgGRR7f/IW/9smM2mZlPAyjmRdzk6hyye2vw6rl/tTw==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "20.0.4" + "System.IO.Abstractions": "21.3.1" } }, "Mongo.Migration": { @@ -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": "20.0.4", - "contentHash": "Vv3DffYCM/DEQ7+9Dn7ydq852WSVtdeoLNlztIqaMAl4o6aALyAJQRTQ30d/3D7BVf5pALsGm22HYb4Y6h8xvw==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4", - "TestableIO.System.IO.Abstractions.Wrappers": "20.0.4" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "System.IO.FileSystem": { @@ -661,21 +655,21 @@ }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "20.0.4", - "contentHash": "zvuE3an8qmEjlz72ZKyW/gBZprR0TMTDxuw77i1OXi5wEagXRhHwP4lOaLvHIXNlwyCAmdmei6iLHsfsZcuUAA==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "20.0.4", - "contentHash": "LbVaZauZfCkcGmHyPhQ2yiKv5GQqTvMViPYd3NjU1tGxp0N2p7Oc6Q/2trN6ZNIZCr42ujJdYUB63hE4mtsHRQ==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "monai.deploy.workflowmanager.contracts": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.2, )", + "Monai.Deploy.Messaging": "[2.0.4, )", "Mongo.Migration": "[3.1.4, )", "MongoDB.Bson": "[2.23.1, )" } diff --git a/src/WorkflowManager/PayloadListener/packages.lock.json b/src/WorkflowManager/PayloadListener/packages.lock.json index 54ccf860d..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.3.0", - "contentHash": "5KQ6zQDNRduora6L8lGQcRikLNLj0s4XjctGuUX24uBRzHMMKv6BatVDSBWRs96riz7PJj7Efn3yOFhfYXgnWg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.300.29", - "contentHash": "BMvjbKNzA7Y1eFbhnRbexaUKZ6FwR/hAdvmPYYYA35kw0Ig5E12shMiCEqtRL1EQYVpAqmLdSPZNxV4hu5Ncng==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.30", - "contentHash": "hsCHGNTf1UeNEVBrjuFsWQfylcqzrBn27bfidgr0VVCKc82dz/PEFIrSFzXuEOjvRSiO5wji/V7x9bGyf1aJ6A==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.300.29, 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.0", - "contentHash": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==" + "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.0", - "contentHash": "P9SoBuVZhJPpALZmSq72aQEb9ryP67EdquaCZGXGrrcASTNHYdrUhnpgSwIipgM5oVC+dKpRXg5zxobmF9xr5g==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0" + "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.0", - "contentHash": "AT2qqos3IgI09ok36Qag9T8bb6kHJ3uT9Q5ki6CySybFsK6/9JbvQAgAHf1pVEjST0/N4JaFaCbm40R5edffwg==" + "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.0", - "contentHash": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging.Configuration": { @@ -238,8 +237,8 @@ }, "Microsoft.Extensions.Options": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "resolved": "8.0.2", + "contentHash": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", "dependencies": { "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", "Microsoft.Extensions.Primitives": "8.0.0" @@ -282,32 +281,32 @@ }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.2", - "contentHash": "iQsD13BAnpbkv1xIVS4cRT2ZXjtcvHJFXlzvTaXjSEEtgGRR7f/IW/9smM2mZlPAyjmRdzk6hyye2vw6rl/tTw==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "20.0.4" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage": { "type": "Transitive", - "resolved": "1.0.0", - "contentHash": "YN087swDoJJCj+UgPVWzsraxL730ajg8OJdEahgPvZFe4quFlfhWIGLweVKRNhSvrN/CV87/m+noLJu7jSEaww==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.30", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", - "Monai.Deploy.Storage.S3Policy": "1.0.0", - "System.IO.Abstractions": "20.0.4" + "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.0", - "contentHash": "I8My4nZEt1vA2wDvti84CfhK+TnyW60E/50Cb+xyhzdrlqWpWr/Xbwhl1ocELAPDeRsakECK4cikrNYLbpp+pQ==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, @@ -334,8 +333,8 @@ }, "MongoDB.Bson": { "type": "Transitive", - "resolved": "2.23.1", - "contentHash": "IX9tycM35xK5hFwnU+rzharPJOtKYtON6E6Lp2nwOVjh40TUcS/HYToEEWZkLgqKNMCfYPK3Fz3QUCxzhkQRGA==", + "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.23.1", - "contentHash": "kidqCwGBuLBx2IcW4os3J6zsp9yaUWm7Sp8G08Nm2RVRSAf0cJXfsynl2wRWpHh0HgfIzzwkevP/qhfsKfu8bQ==", + "resolved": "2.30.0", + "contentHash": "BCG8cNF0+U3h5f/O9fu3ktrYhoESBDems1w06PExfYrn2KjHBHCBdvBRY1cIbysnZVjQAJjGtFV9XgW+hXt7Hg==", "dependencies": { "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "2.23.1", - "MongoDB.Driver.Core": "2.23.1", - "MongoDB.Libmongocrypt": "1.8.0" + "MongoDB.Bson": "2.30.0", + "MongoDB.Driver.Core": "2.30.0", + "MongoDB.Libmongocrypt": "1.12.0" } }, "MongoDB.Driver.Core": { "type": "Transitive", - "resolved": "2.23.1", - "contentHash": "K8LMdnVgT82vdbSllv8VzjPOLa9k5rLcCBd1fG45z+QGJNPWzAFW5lLgLJQ7xXuJgQIwvP1DBx6X6ecWBtox7g==", + "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.23.1", - "MongoDB.Libmongocrypt": "1.8.0", + "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.0", - "contentHash": "fgNw8Dxpkq7mpoaAYes8cfnPRzvFIoB8oL9GPXwi3op/rONftl0WAeg4akRLcxfoVuUvuUO2wGoVBr3JzJ7Svw==" + "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": "20.0.4", - "contentHash": "Vv3DffYCM/DEQ7+9Dn7ydq852WSVtdeoLNlztIqaMAl4o6aALyAJQRTQ30d/3D7BVf5pALsGm22HYb4Y6h8xvw==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4", - "TestableIO.System.IO.Abstractions.Wrappers": "20.0.4" + "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": "20.0.4", - "contentHash": "zvuE3an8qmEjlz72ZKyW/gBZprR0TMTDxuw77i1OXi5wEagXRhHwP4lOaLvHIXNlwyCAmdmei6iLHsfsZcuUAA==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "20.0.4", - "contentHash": "LbVaZauZfCkcGmHyPhQ2yiKv5GQqTvMViPYd3NjU1tGxp0N2p7Oc6Q/2trN6ZNIZCr42ujJdYUB63hE4mtsHRQ==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4" + "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.2, )", - "Monai.Deploy.Storage": "[1.0.0, )" + "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,7 +821,7 @@ "monai.deploy.workflowmanager.contracts": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.2, )", + "Monai.Deploy.Messaging": "[2.0.4, )", "Mongo.Migration": "[3.1.4, )", "MongoDB.Bson": "[2.23.1, )" } @@ -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.23.1, )" + "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.0, )", + "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.2, )", + "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 293b9fc38..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.3.0", - "contentHash": "5KQ6zQDNRduora6L8lGQcRikLNLj0s4XjctGuUX24uBRzHMMKv6BatVDSBWRs96riz7PJj7Efn3yOFhfYXgnWg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.300.29", - "contentHash": "BMvjbKNzA7Y1eFbhnRbexaUKZ6FwR/hAdvmPYYYA35kw0Ig5E12shMiCEqtRL1EQYVpAqmLdSPZNxV4hu5Ncng==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.30", - "contentHash": "hsCHGNTf1UeNEVBrjuFsWQfylcqzrBn27bfidgr0VVCKc82dz/PEFIrSFzXuEOjvRSiO5wji/V7x9bGyf1aJ6A==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.300.29, 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.0", - "contentHash": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==" + "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.0", - "contentHash": "P9SoBuVZhJPpALZmSq72aQEb9ryP67EdquaCZGXGrrcASTNHYdrUhnpgSwIipgM5oVC+dKpRXg5zxobmF9xr5g==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0" + "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.0", - "contentHash": "AT2qqos3IgI09ok36Qag9T8bb6kHJ3uT9Q5ki6CySybFsK6/9JbvQAgAHf1pVEjST0/N4JaFaCbm40R5edffwg==" + "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.0", - "contentHash": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging.Configuration": { @@ -227,8 +226,8 @@ }, "Microsoft.Extensions.Options": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "resolved": "8.0.2", + "contentHash": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", "dependencies": { "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", "Microsoft.Extensions.Primitives": "8.0.0" @@ -272,32 +271,32 @@ }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.2", - "contentHash": "iQsD13BAnpbkv1xIVS4cRT2ZXjtcvHJFXlzvTaXjSEEtgGRR7f/IW/9smM2mZlPAyjmRdzk6hyye2vw6rl/tTw==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "20.0.4" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage": { "type": "Transitive", - "resolved": "1.0.0", - "contentHash": "YN087swDoJJCj+UgPVWzsraxL730ajg8OJdEahgPvZFe4quFlfhWIGLweVKRNhSvrN/CV87/m+noLJu7jSEaww==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.30", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", - "Monai.Deploy.Storage.S3Policy": "1.0.0", - "System.IO.Abstractions": "20.0.4" + "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.0", - "contentHash": "I8My4nZEt1vA2wDvti84CfhK+TnyW60E/50Cb+xyhzdrlqWpWr/Xbwhl1ocELAPDeRsakECK4cikrNYLbpp+pQ==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, @@ -324,8 +323,8 @@ }, "MongoDB.Bson": { "type": "Transitive", - "resolved": "2.23.1", - "contentHash": "IX9tycM35xK5hFwnU+rzharPJOtKYtON6E6Lp2nwOVjh40TUcS/HYToEEWZkLgqKNMCfYPK3Fz3QUCxzhkQRGA==", + "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.23.1", - "contentHash": "kidqCwGBuLBx2IcW4os3J6zsp9yaUWm7Sp8G08Nm2RVRSAf0cJXfsynl2wRWpHh0HgfIzzwkevP/qhfsKfu8bQ==", + "resolved": "2.30.0", + "contentHash": "BCG8cNF0+U3h5f/O9fu3ktrYhoESBDems1w06PExfYrn2KjHBHCBdvBRY1cIbysnZVjQAJjGtFV9XgW+hXt7Hg==", "dependencies": { "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "2.23.1", - "MongoDB.Driver.Core": "2.23.1", - "MongoDB.Libmongocrypt": "1.8.0" + "MongoDB.Bson": "2.30.0", + "MongoDB.Driver.Core": "2.30.0", + "MongoDB.Libmongocrypt": "1.12.0" } }, "MongoDB.Driver.Core": { "type": "Transitive", - "resolved": "2.23.1", - "contentHash": "K8LMdnVgT82vdbSllv8VzjPOLa9k5rLcCBd1fG45z+QGJNPWzAFW5lLgLJQ7xXuJgQIwvP1DBx6X6ecWBtox7g==", + "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.23.1", - "MongoDB.Libmongocrypt": "1.8.0", + "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.0", - "contentHash": "fgNw8Dxpkq7mpoaAYes8cfnPRzvFIoB8oL9GPXwi3op/rONftl0WAeg4akRLcxfoVuUvuUO2wGoVBr3JzJ7Svw==" + "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": "20.0.4", - "contentHash": "Vv3DffYCM/DEQ7+9Dn7ydq852WSVtdeoLNlztIqaMAl4o6aALyAJQRTQ30d/3D7BVf5pALsGm22HYb4Y6h8xvw==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4", - "TestableIO.System.IO.Abstractions.Wrappers": "20.0.4" + "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": "20.0.4", - "contentHash": "zvuE3an8qmEjlz72ZKyW/gBZprR0TMTDxuw77i1OXi5wEagXRhHwP4lOaLvHIXNlwyCAmdmei6iLHsfsZcuUAA==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "20.0.4", - "contentHash": "LbVaZauZfCkcGmHyPhQ2yiKv5GQqTvMViPYd3NjU1tGxp0N2p7Oc6Q/2trN6ZNIZCr42ujJdYUB63hE4mtsHRQ==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "ZstdSharp.Port": { @@ -771,14 +765,14 @@ "monai.deploy.workflowmanager.common.configuration": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.2, )", - "Monai.Deploy.Storage": "[1.0.0, )" + "Monai.Deploy.Messaging": "[2.0.4, )", + "Monai.Deploy.Storage": "[1.0.2, )" } }, "monai.deploy.workflowmanager.contracts": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.2, )", + "Monai.Deploy.Messaging": "[2.0.4, )", "Mongo.Migration": "[3.1.4, )", "MongoDB.Bson": "[2.23.1, )" } @@ -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.23.1, )" + "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.0, )", + "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/Monai.Deploy.WorkflowManager.Storage.csproj b/src/WorkflowManager/Storage/Monai.Deploy.WorkflowManager.Storage.csproj index b5ed86b94..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/packages.lock.json b/src/WorkflowManager/Storage/packages.lock.json index 5ac6b8c90..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.0, )", - "resolved": "1.0.0", - "contentHash": "YN087swDoJJCj+UgPVWzsraxL730ajg8OJdEahgPvZFe4quFlfhWIGLweVKRNhSvrN/CV87/m+noLJu7jSEaww==", + "requested": "[1.0.2, )", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.30", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", - "Monai.Deploy.Storage.S3Policy": "1.0.0", - "System.IO.Abstractions": "20.0.4" + "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.3.0", - "contentHash": "5KQ6zQDNRduora6L8lGQcRikLNLj0s4XjctGuUX24uBRzHMMKv6BatVDSBWRs96riz7PJj7Efn3yOFhfYXgnWg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.300.29", - "contentHash": "BMvjbKNzA7Y1eFbhnRbexaUKZ6FwR/hAdvmPYYYA35kw0Ig5E12shMiCEqtRL1EQYVpAqmLdSPZNxV4hu5Ncng==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.30", - "contentHash": "hsCHGNTf1UeNEVBrjuFsWQfylcqzrBn27bfidgr0VVCKc82dz/PEFIrSFzXuEOjvRSiO5wji/V7x9bGyf1aJ6A==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.300.29, 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.0", - "contentHash": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==" + "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.0", - "contentHash": "P9SoBuVZhJPpALZmSq72aQEb9ryP67EdquaCZGXGrrcASTNHYdrUhnpgSwIipgM5oVC+dKpRXg5zxobmF9xr5g==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0" + "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.0", - "contentHash": "AT2qqos3IgI09ok36Qag9T8bb6kHJ3uT9Q5ki6CySybFsK6/9JbvQAgAHf1pVEjST0/N4JaFaCbm40R5edffwg==" + "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.0", - "contentHash": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging.Configuration": { @@ -212,8 +211,8 @@ }, "Microsoft.Extensions.Options": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "resolved": "8.0.2", + "contentHash": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", "dependencies": { "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", "Microsoft.Extensions.Primitives": "8.0.0" @@ -247,21 +246,21 @@ }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.2", - "contentHash": "iQsD13BAnpbkv1xIVS4cRT2ZXjtcvHJFXlzvTaXjSEEtgGRR7f/IW/9smM2mZlPAyjmRdzk6hyye2vw6rl/tTw==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "20.0.4" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage.S3Policy": { "type": "Transitive", - "resolved": "1.0.0", - "contentHash": "I8My4nZEt1vA2wDvti84CfhK+TnyW60E/50Cb+xyhzdrlqWpWr/Xbwhl1ocELAPDeRsakECK4cikrNYLbpp+pQ==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, @@ -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": "20.0.4", - "contentHash": "Vv3DffYCM/DEQ7+9Dn7ydq852WSVtdeoLNlztIqaMAl4o6aALyAJQRTQ30d/3D7BVf5pALsGm22HYb4Y6h8xvw==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4", - "TestableIO.System.IO.Abstractions.Wrappers": "20.0.4" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "System.IO.FileSystem": { @@ -695,21 +689,21 @@ }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "20.0.4", - "contentHash": "zvuE3an8qmEjlz72ZKyW/gBZprR0TMTDxuw77i1OXi5wEagXRhHwP4lOaLvHIXNlwyCAmdmei6iLHsfsZcuUAA==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "20.0.4", - "contentHash": "LbVaZauZfCkcGmHyPhQ2yiKv5GQqTvMViPYd3NjU1tGxp0N2p7Oc6Q/2trN6ZNIZCr42ujJdYUB63hE4mtsHRQ==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "monai.deploy.workflowmanager.contracts": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.2, )", + "Monai.Deploy.Messaging": "[2.0.4, )", "Mongo.Migration": "[3.1.4, )", "MongoDB.Bson": "[2.23.1, )" } diff --git a/src/WorkflowManager/WorkflowExecuter/Monai.Deploy.WorkloadManager.WorkflowExecuter.csproj b/src/WorkflowManager/WorkflowExecuter/Monai.Deploy.WorkloadManager.WorkflowExecuter.csproj index 2696ffd11..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 cb7170cf0..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.2, )", - "resolved": "2.0.2", - "contentHash": "iQsD13BAnpbkv1xIVS4cRT2ZXjtcvHJFXlzvTaXjSEEtgGRR7f/IW/9smM2mZlPAyjmRdzk6hyye2vw6rl/tTw==", + "requested": "[2.0.4, )", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "20.0.4" + "System.IO.Abstractions": "21.3.1" } }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "5KQ6zQDNRduora6L8lGQcRikLNLj0s4XjctGuUX24uBRzHMMKv6BatVDSBWRs96riz7PJj7Efn3yOFhfYXgnWg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.300.29", - "contentHash": "BMvjbKNzA7Y1eFbhnRbexaUKZ6FwR/hAdvmPYYYA35kw0Ig5E12shMiCEqtRL1EQYVpAqmLdSPZNxV4hu5Ncng==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.30", - "contentHash": "hsCHGNTf1UeNEVBrjuFsWQfylcqzrBn27bfidgr0VVCKc82dz/PEFIrSFzXuEOjvRSiO5wji/V7x9bGyf1aJ6A==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.300.29, 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.0", - "contentHash": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==" + "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.0", - "contentHash": "P9SoBuVZhJPpALZmSq72aQEb9ryP67EdquaCZGXGrrcASTNHYdrUhnpgSwIipgM5oVC+dKpRXg5zxobmF9xr5g==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0" + "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.0", - "contentHash": "AT2qqos3IgI09ok36Qag9T8bb6kHJ3uT9Q5ki6CySybFsK6/9JbvQAgAHf1pVEjST0/N4JaFaCbm40R5edffwg==" + "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.0", - "contentHash": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" } }, "Microsoft.Extensions.Logging.Configuration": { @@ -250,8 +249,8 @@ }, "Microsoft.Extensions.Options": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "resolved": "8.0.2", + "contentHash": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", "dependencies": { "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", "Microsoft.Extensions.Primitives": "8.0.0" @@ -294,21 +293,21 @@ }, "Monai.Deploy.Storage": { "type": "Transitive", - "resolved": "1.0.0", - "contentHash": "YN087swDoJJCj+UgPVWzsraxL730ajg8OJdEahgPvZFe4quFlfhWIGLweVKRNhSvrN/CV87/m+noLJu7jSEaww==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.30", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", - "Monai.Deploy.Storage.S3Policy": "1.0.0", - "System.IO.Abstractions": "20.0.4" + "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.0", - "contentHash": "I8My4nZEt1vA2wDvti84CfhK+TnyW60E/50Cb+xyhzdrlqWpWr/Xbwhl1ocELAPDeRsakECK4cikrNYLbpp+pQ==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, @@ -335,8 +334,8 @@ }, "MongoDB.Bson": { "type": "Transitive", - "resolved": "2.23.1", - "contentHash": "IX9tycM35xK5hFwnU+rzharPJOtKYtON6E6Lp2nwOVjh40TUcS/HYToEEWZkLgqKNMCfYPK3Fz3QUCxzhkQRGA==", + "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.23.1", - "contentHash": "kidqCwGBuLBx2IcW4os3J6zsp9yaUWm7Sp8G08Nm2RVRSAf0cJXfsynl2wRWpHh0HgfIzzwkevP/qhfsKfu8bQ==", + "resolved": "2.30.0", + "contentHash": "BCG8cNF0+U3h5f/O9fu3ktrYhoESBDems1w06PExfYrn2KjHBHCBdvBRY1cIbysnZVjQAJjGtFV9XgW+hXt7Hg==", "dependencies": { "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "2.23.1", - "MongoDB.Driver.Core": "2.23.1", - "MongoDB.Libmongocrypt": "1.8.0" + "MongoDB.Bson": "2.30.0", + "MongoDB.Driver.Core": "2.30.0", + "MongoDB.Libmongocrypt": "1.12.0" } }, "MongoDB.Driver.Core": { "type": "Transitive", - "resolved": "2.23.1", - "contentHash": "K8LMdnVgT82vdbSllv8VzjPOLa9k5rLcCBd1fG45z+QGJNPWzAFW5lLgLJQ7xXuJgQIwvP1DBx6X6ecWBtox7g==", + "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.23.1", - "MongoDB.Libmongocrypt": "1.8.0", + "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.0", - "contentHash": "fgNw8Dxpkq7mpoaAYes8cfnPRzvFIoB8oL9GPXwi3op/rONftl0WAeg4akRLcxfoVuUvuUO2wGoVBr3JzJ7Svw==" + "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": "20.0.4", - "contentHash": "Vv3DffYCM/DEQ7+9Dn7ydq852WSVtdeoLNlztIqaMAl4o6aALyAJQRTQ30d/3D7BVf5pALsGm22HYb4Y6h8xvw==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4", - "TestableIO.System.IO.Abstractions.Wrappers": "20.0.4" + "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": "20.0.4", - "contentHash": "zvuE3an8qmEjlz72ZKyW/gBZprR0TMTDxuw77i1OXi5wEagXRhHwP4lOaLvHIXNlwyCAmdmei6iLHsfsZcuUAA==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "20.0.4", - "contentHash": "LbVaZauZfCkcGmHyPhQ2yiKv5GQqTvMViPYd3NjU1tGxp0N2p7Oc6Q/2trN6ZNIZCr42ujJdYUB63hE4mtsHRQ==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4" + "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.2, )", - "Monai.Deploy.Storage": "[1.0.0, )" + "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,7 +822,7 @@ "monai.deploy.workflowmanager.contracts": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.2, )", + "Monai.Deploy.Messaging": "[2.0.4, )", "Mongo.Migration": "[3.1.4, )", "MongoDB.Bson": "[2.23.1, )" } @@ -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.23.1, )" + "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.0, )", + "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/Monai.Deploy.WorkflowManager.csproj b/src/WorkflowManager/WorkflowManager/Monai.Deploy.WorkflowManager.csproj index dcb351653..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/packages.lock.json b/src/WorkflowManager/WorkflowManager/packages.lock.json index 1581c171b..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.0, )", - "resolved": "8.0.0", - "contentHash": "0YjJlCwkwulozPxFCRcJAl2CdjU5e5ekj4/BQsA6GZbzRxwtN3FIg7LJcWUUgMdwqDoe+6SKFBRnSRpfLY4owA==", + "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.0, )", - "resolved": "8.0.0", - "contentHash": "/e5+eBvY759xiZJO+y1lHi4VzXqbDzTJSyCtKpaj3Ko2JAFQjiCOJ0ZHk2i4g4HpoSdXmzEXQsjr6dUX9U0/JA==", + "requested": "[8.0.14, )", + "resolved": "8.0.14", + "contentHash": "322+FAPeMslfd320h8sASJSJ3h5s4dVr6W0xypr28Vz/cbMFjVCLHOou418cc2Xh0kXRzMy3irD3jBzSA+EiDA==", "dependencies": { - "Microsoft.AspNetCore.JsonPatch": "8.0.0", + "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.2, )", - "resolved": "2.0.2", - "contentHash": "nrMwCJloWpOpPJaYvKJzZIWb3B0B5+Ktz4SP2NApbmreiEI88m9Gab+Q6GuwNvFB+nrtJFDAl/gtdHwV251rcw==", + "requested": "[2.0.4, )", + "resolved": "2.0.4", + "contentHash": "tmEERdnqJq1STVGx30+wVyj7AtvtT8K2j/59lSiZ7k58ZdRku601Gs6k1KZ/sfGeobCjaB4gI7GROxK+lN6gbg==", "dependencies": { - "Monai.Deploy.Messaging": "2.0.2", - "Polly": "8.2.1", + "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.0, )", - "resolved": "1.0.0", - "contentHash": "o6Lq9rshOJ3sxz4lIfl14Zn7+YXvXXg2Jpndtnnx4Ez1RDSTDu2Zf08lEgFHTmwAML1e4fsVVm16LaXv3h3L3A==", + "requested": "[1.0.2, )", + "resolved": "1.0.2", + "contentHash": "H73iUS64UwZXK8ZxNUc3DvokEcptpcoYgY+FMJGlotCffGhqrK8iJ18THR0gg9Io5UgIv24mdu1jbUn/Cz2rhA==", "dependencies": { - "Minio": "6.0.1", - "Monai.Deploy.Storage": "1.0.0", - "Monai.Deploy.Storage.S3Policy": "1.0.0" + "Minio": "6.0.2", + "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.2.8, )", - "resolved": "5.2.8", - "contentHash": "jAIELkWBs1CXFPp986KSGpDFQZHCFccO+LMbKBTTNm42KifaI1mYzFMFQQfuGmGMTrCx0TFPhDjHDE4cLAZWiQ==" + "requested": "[5.4.0, )", + "resolved": "5.4.0", + "contentHash": "LwMcGSW3soF3/SL68rlJN3Eh3ktrAPycC3zZR/07OYBPraZUu0bygEC7kIN10lUQgMXT4s84Fi1chglGdGrQEg==" }, "NLog.Web.AspNetCore": { "type": "Direct", - "requested": "[5.3.8, )", - "resolved": "5.3.8", - "contentHash": "Rt2OCulpAF6rSrZWZzPgHikAI8SDKkq3/52xA/uJ4JtmNjoizULN/IBYtYlZojbPbXiFm3uadOO2rOvvMhjXBQ==", + "requested": "[5.4.0, )", + "resolved": "5.4.0", + "contentHash": "Le6rbipSqeGVygbLGgRwZNMsbjJ+YnoAMJdZVhgjQimXwmYbDNkSswK6Mb32bKoC5aIg5mhw+hpAmgWdegs4Eg==", "dependencies": { - "NLog.Extensions.Logging": "5.3.8" + "NLog.Extensions.Logging": "5.4.0" } }, "StyleCop.Analyzers": { @@ -105,38 +117,38 @@ }, "Swashbuckle.AspNetCore": { "type": "Direct", - "requested": "[6.5.0, )", - "resolved": "6.5.0", - "contentHash": "FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==", + "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.5.0", - "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0", - "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0" + "Swashbuckle.AspNetCore.Swagger": "8.0.0", + "Swashbuckle.AspNetCore.SwaggerGen": "8.0.0", + "Swashbuckle.AspNetCore.SwaggerUI": "8.0.0" } }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "5KQ6zQDNRduora6L8lGQcRikLNLj0s4XjctGuUX24uBRzHMMKv6BatVDSBWRs96riz7PJj7Efn3yOFhfYXgnWg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AWSSDK.Core": { "type": "Transitive", - "resolved": "3.7.300.29", - "contentHash": "BMvjbKNzA7Y1eFbhnRbexaUKZ6FwR/hAdvmPYYYA35kw0Ig5E12shMiCEqtRL1EQYVpAqmLdSPZNxV4hu5Ncng==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.30", - "contentHash": "hsCHGNTf1UeNEVBrjuFsWQfylcqzrBn27bfidgr0VVCKc82dz/PEFIrSFzXuEOjvRSiO5wji/V7x9bGyf1aJ6A==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.300.29, 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.0", - "contentHash": "klQdb/9+j0u8MDjoqHEgDCPz8GRhfsbRVvZIM3glFqjs8uY7S1hS9RvKZuz8o4dS9NsEpFp4Jccd8CQuIYHK0g==", + "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.0", - "contentHash": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==" + "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.0", - "contentHash": "P9SoBuVZhJPpALZmSq72aQEb9ryP67EdquaCZGXGrrcASTNHYdrUhnpgSwIipgM5oVC+dKpRXg5zxobmF9xr5g==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0" + "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.0", - "contentHash": "AT2qqos3IgI09ok36Qag9T8bb6kHJ3uT9Q5ki6CySybFsK6/9JbvQAgAHf1pVEjST0/N4JaFaCbm40R5edffwg==" + "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.0", - "contentHash": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + "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" } }, @@ -405,8 +416,8 @@ }, "Microsoft.Extensions.Options": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "resolved": "8.0.2", + "contentHash": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", "dependencies": { "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", "Microsoft.Extensions.Primitives": "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.2.3", - "contentHash": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==" + "resolved": "1.6.23", + "contentHash": "tZ1I0KXnn98CWuV8cpI247A17jaY+ILS9vvF7yhI0uPPEqF4P1d7BWL5Uwtel10w9NucllHB3nTkfYTAcHAh8g==" }, "Microsoft.Win32.Registry": { "type": "Transitive", @@ -502,77 +513,66 @@ }, "Minio": { "type": "Transitive", - "resolved": "6.0.1", - "contentHash": "uavo/zTpUzHLqnB0nyAk6E/2THLRPvZ59Md7IkLKXkAFiX//K2knVK2+dSHDNN2uAUqCvLqO+cM+s9VGBWbIKQ==", + "resolved": "6.0.2", + "contentHash": "4Od4uGANX5X0AL90WV0viBNzpE2+jDHro6CGvR4//MVj5SiTTwR5SUikXgd/2G2PtYyXw4b/IBpo7Kt5cCCndA==", "dependencies": { "CommunityToolkit.HighPerformance": "8.2.2", - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging": "7.0.0", - "System.IO.Hashing": "7.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "System.IO.Hashing": "8.0.0", "System.Reactive": "6.0.0" } }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.2", - "contentHash": "iQsD13BAnpbkv1xIVS4cRT2ZXjtcvHJFXlzvTaXjSEEtgGRR7f/IW/9smM2mZlPAyjmRdzk6hyye2vw6rl/tTw==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "20.0.4" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Storage": { "type": "Transitive", - "resolved": "1.0.0", - "contentHash": "YN087swDoJJCj+UgPVWzsraxL730ajg8OJdEahgPvZFe4quFlfhWIGLweVKRNhSvrN/CV87/m+noLJu7jSEaww==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.30", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", - "Monai.Deploy.Storage.S3Policy": "1.0.0", - "System.IO.Abstractions": "20.0.4" + "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.0", - "contentHash": "I8My4nZEt1vA2wDvti84CfhK+TnyW60E/50Cb+xyhzdrlqWpWr/Xbwhl1ocELAPDeRsakECK4cikrNYLbpp+pQ==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, "MongoDB.Bson": { "type": "Transitive", - "resolved": "2.23.1", - "contentHash": "IX9tycM35xK5hFwnU+rzharPJOtKYtON6E6Lp2nwOVjh40TUcS/HYToEEWZkLgqKNMCfYPK3Fz3QUCxzhkQRGA==", + "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.23.1", - "contentHash": "kidqCwGBuLBx2IcW4os3J6zsp9yaUWm7Sp8G08Nm2RVRSAf0cJXfsynl2wRWpHh0HgfIzzwkevP/qhfsKfu8bQ==", - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "2.23.1", - "MongoDB.Driver.Core": "2.23.1", - "MongoDB.Libmongocrypt": "1.8.0" - } - }, "MongoDB.Driver.Core": { "type": "Transitive", - "resolved": "2.23.1", - "contentHash": "K8LMdnVgT82vdbSllv8VzjPOLa9k5rLcCBd1fG45z+QGJNPWzAFW5lLgLJQ7xXuJgQIwvP1DBx6X6ecWBtox7g==", + "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.23.1", - "MongoDB.Libmongocrypt": "1.8.0", + "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.0", - "contentHash": "fgNw8Dxpkq7mpoaAYes8cfnPRzvFIoB8oL9GPXwi3op/rONftl0WAeg4akRLcxfoVuUvuUO2wGoVBr3JzJ7Svw==" + "resolved": "1.12.0", + "contentHash": "B1X51jrtNacKvxKoaqWeknYeJfQS5aWf6BmVLT5JZerz3AUXFzv8edPskJYqBc3kLy1J2PWzMqqsnyb9g8FtcA==" }, "Newtonsoft.Json": { "type": "Transitive", @@ -599,26 +599,26 @@ }, "NLog.Extensions.Logging": { "type": "Transitive", - "resolved": "5.3.8", - "contentHash": "6VD0lyeokWltL6j8lO7mS7v7lbuO/qn0F7kdvhKhEx1JvFyD39nzohOK3JvkVh4Nn3mrcMDCyDxvTvmiW55jQg==", + "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.2.8" + "NLog": "5.4.0" } }, "Polly": { "type": "Transitive", - "resolved": "8.2.1", - "contentHash": "tVHvP5Z0fNoZCE9mpKAsh0IaValwsTGPrqjlWqkWR/Gpl5jL05HWC/AVGSL+jkAqkl1Jn7uBUOArnRD+dK5PfQ==", + "resolved": "8.5.2", + "contentHash": "vbXsGgkG86nG+TOwY+SmtrGrRHmHH0DQaxtILx//d3Dz/ocJ8izSNYzdvU2gEtWa/LDD8zJLvD3HdjEkdlvkhg==", "dependencies": { - "Polly.Core": "8.2.1" + "Polly.Core": "8.5.2" } }, "Polly.Core": { "type": "Transitive", - "resolved": "8.2.1", - "contentHash": "/Z3EspfWBdTla4I9IAcQn32/7kB5WS3rSnOYloz8YlVyClu8h7uuYf4pfUvffOYVbxmDX/mFRfxwzqW2Zs96ZA==" + "resolved": "8.5.2", + "contentHash": "1MJKdxv4zwDmiWvYvVN24DsrWUfgQ4F83voH8bhbtLMdPuGy8CfTUzsgQhvyrl1a7hrM6f/ydwLVdVUI0xooUw==" }, "RabbitMQ.Client": { "type": "Transitive", @@ -715,24 +715,24 @@ }, "Swashbuckle.AspNetCore.Swagger": { "type": "Transitive", - "resolved": "6.5.0", - "contentHash": "XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==", + "resolved": "8.0.0", + "contentHash": "+8Y4pVTWbnzotIk6d6rcwsHGpCchPDqqrvYkyGlI3go+pFaKM+4eX30iCyI0hvr0RMtObJCFhK6aDtlQFbEF1g==", "dependencies": { - "Microsoft.OpenApi": "1.2.3" + "Microsoft.OpenApi": "1.6.23" } }, "Swashbuckle.AspNetCore.SwaggerGen": { "type": "Transitive", - "resolved": "6.5.0", - "contentHash": "Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==", + "resolved": "8.0.0", + "contentHash": "skCeIQ93yMcUm1PQby5qitFM6KLIlLMj4/i8JHy86x2OFzxTNaaas2kUg6rNV3JvucFvYCNyImg7NMtZHErSzQ==", "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "6.5.0" + "Swashbuckle.AspNetCore.Swagger": "8.0.0" } }, "Swashbuckle.AspNetCore.SwaggerUI": { "type": "Transitive", - "resolved": "6.5.0", - "contentHash": "OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==" + "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": "20.0.4", - "contentHash": "Vv3DffYCM/DEQ7+9Dn7ydq852WSVtdeoLNlztIqaMAl4o6aALyAJQRTQ30d/3D7BVf5pALsGm22HYb4Y6h8xvw==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4", - "TestableIO.System.IO.Abstractions.Wrappers": "20.0.4" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "System.IO.FileSystem": { @@ -869,8 +864,8 @@ }, "System.IO.Hashing": { "type": "Transitive", - "resolved": "7.0.0", - "contentHash": "sDnWM0N3AMCa86LrKTWeF3BZLD2sgWyYUc7HL6z4+xyDZNQRwzmxbo4qP2rX2MqC+Sy1/gOSRDah5ltxY5jPxw==" + "resolved": "8.0.0", + "contentHash": "ne1843evDugl0md7Fjzy6QjJrzsjh46ZKbhf8GwBXb5f/gw97J4bxMs0NQKifDuThh/f0bZ0e62NPl1jzTuRqA==" }, "System.Memory": { "type": "Transitive", @@ -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": "20.0.4", - "contentHash": "zvuE3an8qmEjlz72ZKyW/gBZprR0TMTDxuw77i1OXi5wEagXRhHwP4lOaLvHIXNlwyCAmdmei6iLHsfsZcuUAA==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "20.0.4", - "contentHash": "LbVaZauZfCkcGmHyPhQ2yiKv5GQqTvMViPYd3NjU1tGxp0N2p7Oc6Q/2trN6ZNIZCr42ujJdYUB63hE4mtsHRQ==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4" + "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.2, )", - "Monai.Deploy.Storage": "[1.0.0, )" + "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,7 +1100,7 @@ "monai.deploy.workflowmanager.contracts": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.2, )", + "Monai.Deploy.Messaging": "[2.0.4, )", "Mongo.Migration": "[3.1.4, )", "MongoDB.Bson": "[2.23.1, )" } @@ -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.23.1, )" + "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.0, )", + "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.2, )", + "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 3a7fc2f04..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 04fb569aa..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 ddda7633b..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/ConditionsResolver.Tests/Monai.Deploy.WorkflowManager.ConditionsResolver.Tests.csproj b/tests/UnitTests/ConditionsResolver.Tests/Monai.Deploy.WorkflowManager.ConditionsResolver.Tests.csproj index 2b6b040cb..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 70e2d9a8d..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 b6b1cbee2..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 cbb233ae9..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 2e4672005..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 1707140e5..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 7d8d5b717..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 222c83675..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 9db06c530..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 25918fb0b..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 786d948bc..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 53cbe8909..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 6db997f79..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 1f8d0bd6c..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/Monai.Deploy.WorkflowManager.Tests.csproj b/tests/UnitTests/WorkflowManager.Tests/Monai.Deploy.WorkflowManager.Tests.csproj index dd03ff092..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 old mode 100755 new mode 100644 index 9e85dade8..dbdc213ad --- 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.0, )", - "resolved": "6.0.0", - "contentHash": "tW3lsNS+dAEII6YGUX/VMoJjBS1QvsxqJeqLaJXub08y1FSjasFPtQ4UBUsudE9PNrzLjooClMsPtY2cZLdXpQ==" + "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.8.0, )", - "resolved": "17.8.0", - "contentHash": "BmTYGbD/YuDHmApIENdoyN1jCk0Rj1fJB0+B/fVekyTdVidr91IlzhqzytiUgaEAzL1ZJcYCme0MeBMYvJVzvw==", + "requested": "[17.13.0, )", + "resolved": "17.13.0", + "contentHash": "W19wCPizaIC9Zh47w8wWI/yxuqR7/dtABwOrc8r2jX/8mUNxM2vw4fXDh+DJTeogxV+KzKwg5jNNGQVwf3LXyA==", "dependencies": { - "Microsoft.CodeCoverage": "17.8.0", - "Microsoft.TestPlatform.TestHost": "17.8.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.7.0, )", - "resolved": "2.7.0", - "contentHash": "KcCI5zxh8zbUfQTeErc4oT7YokViVND2V0p4vDJ2VD4lhF9V5qCYMMDNixme7FdwYy3SwPHF+2xC2Dq4Z9GSlA==", + "requested": "[2.9.3, )", + "resolved": "2.9.3", + "contentHash": "TlXQBinK35LpOPKHAqbLY4xlEen9TBafjs0V5KnA4wZsoQLQJiirCR4CbIXvOH8NzkW4YeJKP5P/Bnrodm0h9Q==", "dependencies": { - "xunit.analyzers": "1.11.0", - "xunit.assert": "2.7.0", - "xunit.core": "[2.7.0]" + "xunit.analyzers": "1.18.0", + "xunit.assert": "2.9.3", + "xunit.core": "[2.9.3]" } }, "xunit.runner.visualstudio": { "type": "Direct", - "requested": "[2.5.6, )", - "resolved": "2.5.6", - "contentHash": "CW6uhMXNaQQNMSG1IWhHkBT+V5eqHqn7MP0zfNMhU9wS/sgKX7FGL3rzoaUgt26wkY3bpf7pDVw3IjXhwfiP4w==" + "requested": "[3.0.2, )", + "resolved": "3.0.2", + "contentHash": "oXbusR6iPq0xlqoikjdLvzh+wQDkMv9If58myz9MEzldS4nIcp442Btgs2sWbYWV+caEluMe2pQCZ0hUZgPiow==" }, "Ardalis.GuardClauses": { "type": "Transitive", - "resolved": "4.3.0", - "contentHash": "5KQ6zQDNRduora6L8lGQcRikLNLj0s4XjctGuUX24uBRzHMMKv6BatVDSBWRs96riz7PJj7Efn3yOFhfYXgnWg==" + "resolved": "4.6.0", + "contentHash": "ckLr6V8tRXHu0kGVlen70sjXkZcbe6ZFknM3UDkeNzY75kXEe4Z5xru5weMU5IEAsuuqMKvVb7ikbUZ7JcHUSQ==" }, "AspNetCore.HealthChecks.MongoDb": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "0YjJlCwkwulozPxFCRcJAl2CdjU5e5ekj4/BQsA6GZbzRxwtN3FIg7LJcWUUgMdwqDoe+6SKFBRnSRpfLY4owA==", + "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.300.29", - "contentHash": "BMvjbKNzA7Y1eFbhnRbexaUKZ6FwR/hAdvmPYYYA35kw0Ig5E12shMiCEqtRL1EQYVpAqmLdSPZNxV4hu5Ncng==" + "resolved": "3.7.402.25", + "contentHash": "NCbho/muk9knZ70dOlKBhIB0WLxKwg/TzElYj5jVBJUEFx/p/lmGhMvTEGof42Xtr1VjJ0FdZDPl4BarRaKHQA==" }, "AWSSDK.SecurityToken": { "type": "Transitive", - "resolved": "3.7.300.30", - "contentHash": "hsCHGNTf1UeNEVBrjuFsWQfylcqzrBn27bfidgr0VVCKc82dz/PEFIrSFzXuEOjvRSiO5wji/V7x9bGyf1aJ6A==", + "resolved": "3.7.401.68", + "contentHash": "mtYLPlgG9VHYONevNMIP+ALY99ufbP1+fAuT9C2lCtofY0DIR5SZa+tyGKiVni+mDYJSq66Bdqqa7i/D8USYLA==", "dependencies": { - "AWSSDK.Core": "[3.7.300.29, 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.0", - "contentHash": "klQdb/9+j0u8MDjoqHEgDCPz8GRhfsbRVvZIM3glFqjs8uY7S1hS9RvKZuz8o4dS9NsEpFp4Jccd8CQuIYHK0g==", + "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.0", - "contentHash": "/e5+eBvY759xiZJO+y1lHi4VzXqbDzTJSyCtKpaj3Ko2JAFQjiCOJ0ZHk2i4g4HpoSdXmzEXQsjr6dUX9U0/JA==", + "resolved": "8.0.14", + "contentHash": "322+FAPeMslfd320h8sASJSJ3h5s4dVr6W0xypr28Vz/cbMFjVCLHOou418cc2Xh0kXRzMy3irD3jBzSA+EiDA==", "dependencies": { - "Microsoft.AspNetCore.JsonPatch": "8.0.0", + "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.8.0", - "contentHash": "KC8SXWbGIdoFVdlxKk9WHccm0llm9HypcHMLUUFabRiTS3SO2fQXNZfdiF3qkEdTJhbRrxhdRxjL4jbtwPq4Ew==" + "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.0", - "contentHash": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==" + "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.0", - "contentHash": "P9SoBuVZhJPpALZmSq72aQEb9ryP67EdquaCZGXGrrcASTNHYdrUhnpgSwIipgM5oVC+dKpRXg5zxobmF9xr5g==", + "resolved": "8.0.14", + "contentHash": "obv82U5+okAtAP8K2Ne027Y8rfvseUPUNZUMVUffRB+Unom8mjzvqL/GzUx7rPj6f9e/hQbGwF5ya5RZq7327Q==", "dependencies": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.Extensions.Options": "8.0.0" + "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.0", - "contentHash": "AT2qqos3IgI09ok36Qag9T8bb6kHJ3uT9Q5ki6CySybFsK6/9JbvQAgAHf1pVEjST0/N4JaFaCbm40R5edffwg==" + "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.0", - "contentHash": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "resolved": "8.0.3", + "contentHash": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==", "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + "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" } }, @@ -402,8 +401,8 @@ }, "Microsoft.Extensions.Options": { "type": "Transitive", - "resolved": "8.0.0", - "contentHash": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "resolved": "8.0.2", + "contentHash": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", "dependencies": { "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", "Microsoft.Extensions.Primitives": "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,24 +484,23 @@ }, "Microsoft.OpenApi": { "type": "Transitive", - "resolved": "1.2.3", - "contentHash": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==" + "resolved": "1.6.23", + "contentHash": "tZ1I0KXnn98CWuV8cpI247A17jaY+ILS9vvF7yhI0uPPEqF4P1d7BWL5Uwtel10w9NucllHB3nTkfYTAcHAh8g==" }, "Microsoft.TestPlatform.ObjectModel": { "type": "Transitive", - "resolved": "17.8.0", - "contentHash": "AYy6vlpGMfz5kOFq99L93RGbqftW/8eQTqjT9iGXW6s9MRP3UdtY8idJ8rJcjeSja8A18IhIro5YnH3uv1nz4g==", + "resolved": "17.13.0", + "contentHash": "bt0E0Dx+iqW97o4A59RCmUmz/5NarJ7LRL+jXbSHod72ibL5XdNm1Ke+UO5tFhBG4VwHLcSjqq9BUSblGNWamw==", "dependencies": { - "NuGet.Frameworks": "6.5.0", "System.Reflection.Metadata": "1.6.0" } }, "Microsoft.TestPlatform.TestHost": { "type": "Transitive", - "resolved": "17.8.0", - "contentHash": "9ivcl/7SGRmOT0YYrHQGohWiT5YCpkmy/UEzldfVisLm6QxbLaK3FAJqZXI34rnRLmqqDCeMQxKINwmKwAPiDw==", + "resolved": "17.13.0", + "contentHash": "9GGw08Dc3AXspjekdyTdZ/wYWFlxbgcF0s7BKxzVX+hzAwpifDOdxM+ceVaaJSQOwqt3jtuNlHn3XTpKUS9x9Q==", "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "17.8.0", + "Microsoft.TestPlatform.ObjectModel": "17.13.0", "Newtonsoft.Json": "13.0.1" } }, @@ -527,78 +525,78 @@ }, "Minio": { "type": "Transitive", - "resolved": "6.0.1", - "contentHash": "uavo/zTpUzHLqnB0nyAk6E/2THLRPvZ59Md7IkLKXkAFiX//K2knVK2+dSHDNN2uAUqCvLqO+cM+s9VGBWbIKQ==", + "resolved": "6.0.2", + "contentHash": "4Od4uGANX5X0AL90WV0viBNzpE2+jDHro6CGvR4//MVj5SiTTwR5SUikXgd/2G2PtYyXw4b/IBpo7Kt5cCCndA==", "dependencies": { "CommunityToolkit.HighPerformance": "8.2.2", - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging": "7.0.0", - "System.IO.Hashing": "7.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "System.IO.Hashing": "8.0.0", "System.Reactive": "6.0.0" } }, "Monai.Deploy.Messaging": { "type": "Transitive", - "resolved": "2.0.2", - "contentHash": "iQsD13BAnpbkv1xIVS4cRT2ZXjtcvHJFXlzvTaXjSEEtgGRR7f/IW/9smM2mZlPAyjmRdzk6hyye2vw6rl/tTw==", + "resolved": "2.0.4", + "contentHash": "eehOa4v9i4uq4QxFFZ2yj5q9/R0euMCMSlKsY/lpHwsInOi63etUA3lEqikdul6PTCyRRYh+ubFqmW03PDFQfg==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", + "Ardalis.GuardClauses": "4.6.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.14", "Newtonsoft.Json": "13.0.3", - "System.IO.Abstractions": "20.0.4" + "System.IO.Abstractions": "21.3.1" } }, "Monai.Deploy.Messaging.RabbitMQ": { "type": "Transitive", - "resolved": "2.0.2", - "contentHash": "nrMwCJloWpOpPJaYvKJzZIWb3B0B5+Ktz4SP2NApbmreiEI88m9Gab+Q6GuwNvFB+nrtJFDAl/gtdHwV251rcw==", + "resolved": "2.0.4", + "contentHash": "tmEERdnqJq1STVGx30+wVyj7AtvtT8K2j/59lSiZ7k58ZdRku601Gs6k1KZ/sfGeobCjaB4gI7GROxK+lN6gbg==", "dependencies": { - "Monai.Deploy.Messaging": "2.0.2", - "Polly": "8.2.1", + "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.0", - "contentHash": "YN087swDoJJCj+UgPVWzsraxL730ajg8OJdEahgPvZFe4quFlfhWIGLweVKRNhSvrN/CV87/m+noLJu7jSEaww==", + "resolved": "1.0.2", + "contentHash": "pWhQfV2QzdirCV0J7kDsMpnAKzSUb+uaWeQxgD+BqtFbrlX8RFFrIIDkOfZlMbAhJMuwbTNVqE/ZLtWP4fuSjA==", "dependencies": { - "AWSSDK.SecurityToken": "3.7.300.30", - "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0", - "Monai.Deploy.Storage.S3Policy": "1.0.0", - "System.IO.Abstractions": "20.0.4" + "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.0", - "contentHash": "o6Lq9rshOJ3sxz4lIfl14Zn7+YXvXXg2Jpndtnnx4Ez1RDSTDu2Zf08lEgFHTmwAML1e4fsVVm16LaXv3h3L3A==", + "resolved": "1.0.2", + "contentHash": "H73iUS64UwZXK8ZxNUc3DvokEcptpcoYgY+FMJGlotCffGhqrK8iJ18THR0gg9Io5UgIv24mdu1jbUn/Cz2rhA==", "dependencies": { - "Minio": "6.0.1", - "Monai.Deploy.Storage": "1.0.0", - "Monai.Deploy.Storage.S3Policy": "1.0.0" + "Minio": "6.0.2", + "Monai.Deploy.Storage": "1.0.2", + "Monai.Deploy.Storage.S3Policy": "1.0.2" } }, "Monai.Deploy.Storage.S3Policy": { "type": "Transitive", - "resolved": "1.0.0", - "contentHash": "I8My4nZEt1vA2wDvti84CfhK+TnyW60E/50Cb+xyhzdrlqWpWr/Xbwhl1ocELAPDeRsakECK4cikrNYLbpp+pQ==", + "resolved": "1.0.2", + "contentHash": "SDQb0HmTV99ysIT2WfHkUzWPNRtDpnuES358F3wNaQ6VZ6lSCaaSlzJpdsbf1kc0OKjiXntj1D3u63finvlHrw==", "dependencies": { - "Ardalis.GuardClauses": "4.3.0", + "Ardalis.GuardClauses": "4.6.0", "Newtonsoft.Json": "13.0.3" } }, @@ -625,8 +623,8 @@ }, "MongoDB.Bson": { "type": "Transitive", - "resolved": "2.23.1", - "contentHash": "IX9tycM35xK5hFwnU+rzharPJOtKYtON6E6Lp2nwOVjh40TUcS/HYToEEWZkLgqKNMCfYPK3Fz3QUCxzhkQRGA==", + "resolved": "2.30.0", + "contentHash": "Gg0TQUT3IEntcqdug5a9P6d8iwL5CqOpQjVBCq1hxTbkjxdGdY6a2CPv7II44AO9GYUnORYsS6dDME2b7aqYyg==", "dependencies": { "System.Memory": "4.5.5", "System.Runtime.CompilerServices.Unsafe": "5.0.0" @@ -634,25 +632,25 @@ }, "MongoDB.Driver": { "type": "Transitive", - "resolved": "2.23.1", - "contentHash": "kidqCwGBuLBx2IcW4os3J6zsp9yaUWm7Sp8G08Nm2RVRSAf0cJXfsynl2wRWpHh0HgfIzzwkevP/qhfsKfu8bQ==", + "resolved": "2.30.0", + "contentHash": "BCG8cNF0+U3h5f/O9fu3ktrYhoESBDems1w06PExfYrn2KjHBHCBdvBRY1cIbysnZVjQAJjGtFV9XgW+hXt7Hg==", "dependencies": { "Microsoft.Extensions.Logging.Abstractions": "2.0.0", - "MongoDB.Bson": "2.23.1", - "MongoDB.Driver.Core": "2.23.1", - "MongoDB.Libmongocrypt": "1.8.0" + "MongoDB.Bson": "2.30.0", + "MongoDB.Driver.Core": "2.30.0", + "MongoDB.Libmongocrypt": "1.12.0" } }, "MongoDB.Driver.Core": { "type": "Transitive", - "resolved": "2.23.1", - "contentHash": "K8LMdnVgT82vdbSllv8VzjPOLa9k5rLcCBd1fG45z+QGJNPWzAFW5lLgLJQ7xXuJgQIwvP1DBx6X6ecWBtox7g==", + "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.23.1", - "MongoDB.Libmongocrypt": "1.8.0", + "MongoDB.Bson": "2.30.0", + "MongoDB.Libmongocrypt": "1.12.0", "SharpCompress": "0.30.1", "Snappier": "1.0.0", "System.Buffers": "4.5.1", @@ -661,8 +659,8 @@ }, "MongoDB.Libmongocrypt": { "type": "Transitive", - "resolved": "1.8.0", - "contentHash": "fgNw8Dxpkq7mpoaAYes8cfnPRzvFIoB8oL9GPXwi3op/rONftl0WAeg4akRLcxfoVuUvuUO2wGoVBr3JzJ7Svw==" + "resolved": "1.12.0", + "contentHash": "B1X51jrtNacKvxKoaqWeknYeJfQS5aWf6BmVLT5JZerz3AUXFzv8edPskJYqBc3kLy1J2PWzMqqsnyb9g8FtcA==" }, "NETStandard.Library": { "type": "Transitive", @@ -730,44 +728,39 @@ }, "NLog": { "type": "Transitive", - "resolved": "5.2.8", - "contentHash": "jAIELkWBs1CXFPp986KSGpDFQZHCFccO+LMbKBTTNm42KifaI1mYzFMFQQfuGmGMTrCx0TFPhDjHDE4cLAZWiQ==" + "resolved": "5.4.0", + "contentHash": "LwMcGSW3soF3/SL68rlJN3Eh3ktrAPycC3zZR/07OYBPraZUu0bygEC7kIN10lUQgMXT4s84Fi1chglGdGrQEg==" }, "NLog.Extensions.Logging": { "type": "Transitive", - "resolved": "5.3.8", - "contentHash": "6VD0lyeokWltL6j8lO7mS7v7lbuO/qn0F7kdvhKhEx1JvFyD39nzohOK3JvkVh4Nn3mrcMDCyDxvTvmiW55jQg==", + "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.2.8" + "NLog": "5.4.0" } }, "NLog.Web.AspNetCore": { "type": "Transitive", - "resolved": "5.3.8", - "contentHash": "Rt2OCulpAF6rSrZWZzPgHikAI8SDKkq3/52xA/uJ4JtmNjoizULN/IBYtYlZojbPbXiFm3uadOO2rOvvMhjXBQ==", + "resolved": "5.4.0", + "contentHash": "Le6rbipSqeGVygbLGgRwZNMsbjJ+YnoAMJdZVhgjQimXwmYbDNkSswK6Mb32bKoC5aIg5mhw+hpAmgWdegs4Eg==", "dependencies": { - "NLog.Extensions.Logging": "5.3.8" + "NLog.Extensions.Logging": "5.4.0" } }, - "NuGet.Frameworks": { - "type": "Transitive", - "resolved": "6.5.0", - "contentHash": "QWINE2x3MbTODsWT1Gh71GaGb5icBz4chS8VYvTgsBnsi8esgN6wtHhydd7fvToWECYGq7T4cgBBDiKD/363fg==" - }, "Polly": { "type": "Transitive", - "resolved": "8.2.1", - "contentHash": "tVHvP5Z0fNoZCE9mpKAsh0IaValwsTGPrqjlWqkWR/Gpl5jL05HWC/AVGSL+jkAqkl1Jn7uBUOArnRD+dK5PfQ==", + "resolved": "8.5.2", + "contentHash": "vbXsGgkG86nG+TOwY+SmtrGrRHmHH0DQaxtILx//d3Dz/ocJ8izSNYzdvU2gEtWa/LDD8zJLvD3HdjEkdlvkhg==", "dependencies": { - "Polly.Core": "8.2.1" + "Polly.Core": "8.5.2" } }, "Polly.Core": { "type": "Transitive", - "resolved": "8.2.1", - "contentHash": "/Z3EspfWBdTla4I9IAcQn32/7kB5WS3rSnOYloz8YlVyClu8h7uuYf4pfUvffOYVbxmDX/mFRfxwzqW2Zs96ZA==" + "resolved": "8.5.2", + "contentHash": "1MJKdxv4zwDmiWvYvVN24DsrWUfgQ4F83voH8bhbtLMdPuGy8CfTUzsgQhvyrl1a7hrM6f/ydwLVdVUI0xooUw==" }, "RabbitMQ.Client": { "type": "Transitive", @@ -971,35 +964,35 @@ }, "Swashbuckle.AspNetCore": { "type": "Transitive", - "resolved": "6.5.0", - "contentHash": "FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==", + "resolved": "8.0.0", + "contentHash": "K9FzGTxmwfD+7sVf/FTq/TZFHBTXcROgdcg7gLFwKwgvXwaqTtjGVdam27j0kYfgZZyWlOKr+abmtyd2nAd5eA==", "dependencies": { "Microsoft.Extensions.ApiDescription.Server": "6.0.5", - "Swashbuckle.AspNetCore.Swagger": "6.5.0", - "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0", - "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0" + "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.5.0", - "contentHash": "XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==", + "resolved": "8.0.0", + "contentHash": "+8Y4pVTWbnzotIk6d6rcwsHGpCchPDqqrvYkyGlI3go+pFaKM+4eX30iCyI0hvr0RMtObJCFhK6aDtlQFbEF1g==", "dependencies": { - "Microsoft.OpenApi": "1.2.3" + "Microsoft.OpenApi": "1.6.23" } }, "Swashbuckle.AspNetCore.SwaggerGen": { "type": "Transitive", - "resolved": "6.5.0", - "contentHash": "Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==", + "resolved": "8.0.0", + "contentHash": "skCeIQ93yMcUm1PQby5qitFM6KLIlLMj4/i8JHy86x2OFzxTNaaas2kUg6rNV3JvucFvYCNyImg7NMtZHErSzQ==", "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "6.5.0" + "Swashbuckle.AspNetCore.Swagger": "8.0.0" } }, "Swashbuckle.AspNetCore.SwaggerUI": { "type": "Transitive", - "resolved": "6.5.0", - "contentHash": "OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==" + "resolved": "8.0.0", + "contentHash": "IMqmgclFiZL2QIfopOmWYofZzckrl+SdMt1h4mKC0jc94F+uzt3IHA3YFC0CGlwBqTTSnxHqNUKomNTeAhZbYA==" }, "System.AppContext": { "type": "Transitive", @@ -1112,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", @@ -1176,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": { @@ -1197,11 +1197,11 @@ }, "System.IO.Abstractions": { "type": "Transitive", - "resolved": "20.0.4", - "contentHash": "Vv3DffYCM/DEQ7+9Dn7ydq852WSVtdeoLNlztIqaMAl4o6aALyAJQRTQ30d/3D7BVf5pALsGm22HYb4Y6h8xvw==", + "resolved": "21.3.1", + "contentHash": "Gm8HI/AHwoWd1r9IUShekWgAQjJgTM1jmrJHSkxONeuVUQAZdxSKzGYTjReBYgqLvF1Zq1Hcd1qHytrL0HuiBg==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4", - "TestableIO.System.IO.Abstractions.Wrappers": "20.0.4" + "TestableIO.System.IO.Abstractions": "21.3.1", + "TestableIO.System.IO.Abstractions.Wrappers": "21.3.1" } }, "System.IO.Compression": { @@ -1267,8 +1267,8 @@ }, "System.IO.Hashing": { "type": "Transitive", - "resolved": "7.0.0", - "contentHash": "sDnWM0N3AMCa86LrKTWeF3BZLD2sgWyYUc7HL6z4+xyDZNQRwzmxbo4qP2rX2MqC+Sy1/gOSRDah5ltxY5jPxw==" + "resolved": "8.0.0", + "contentHash": "ne1843evDugl0md7Fjzy6QjJrzsjh46ZKbhf8GwBXb5f/gw97J4bxMs0NQKifDuThh/f0bZ0e62NPl1jzTuRqA==" }, "System.Linq": { "type": "Transitive", @@ -1488,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", @@ -1724,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", @@ -1743,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", @@ -1858,15 +1848,15 @@ }, "TestableIO.System.IO.Abstractions": { "type": "Transitive", - "resolved": "20.0.4", - "contentHash": "zvuE3an8qmEjlz72ZKyW/gBZprR0TMTDxuw77i1OXi5wEagXRhHwP4lOaLvHIXNlwyCAmdmei6iLHsfsZcuUAA==" + "resolved": "21.3.1", + "contentHash": "B9USlBOZAiqXss7AI4BH6HVWs+HoHx38OadJjBO0VCzEWgP/u0u52bogmrzDHsyqRv8Yo/xtIMQXgpjLoaAUXw==" }, "TestableIO.System.IO.Abstractions.Wrappers": { "type": "Transitive", - "resolved": "20.0.4", - "contentHash": "LbVaZauZfCkcGmHyPhQ2yiKv5GQqTvMViPYd3NjU1tGxp0N2p7Oc6Q/2trN6ZNIZCr42ujJdYUB63hE4mtsHRQ==", + "resolved": "21.3.1", + "contentHash": "l/xu8G96pntsofFG8vh6BKbVbYWtqYZTpNCcj4jGNwxwSbwY2gvDmkiFmIbWf7lgzPZbopW2FAfaY6m4K/3QJw==", "dependencies": { - "TestableIO.System.IO.Abstractions": "20.0.4" + "TestableIO.System.IO.Abstractions": "21.3.1" } }, "xunit.abstractions": { @@ -1876,37 +1866,37 @@ }, "xunit.analyzers": { "type": "Transitive", - "resolved": "1.11.0", - "contentHash": "SCv+Ihxv+fCqotGeM8sVwLhw8nzAJ2aFRN5lcoKn9QtGdbVJ79JqDc+4u8/Ddnp2udxtmv+xYFWkHNlb/sk01w==" + "resolved": "1.18.0", + "contentHash": "OtFMHN8yqIcYP9wcVIgJrq01AfTxijjAqVDy/WeQVSyrDC1RzBWeQPztL49DN2syXRah8TYnfvk035s7L95EZQ==" }, "xunit.assert": { "type": "Transitive", - "resolved": "2.7.0", - "contentHash": "CCTs3bUhmIS4tDwK6Cn/IiabG3RhYzdf65eIkO7u9/grKoN9MrN780LzVED3E8v+vwmmj7b5TW3/GFuZHPAzWA==" + "resolved": "2.9.3", + "contentHash": "/Kq28fCE7MjOV42YLVRAJzRF0WmEqsmflm0cfpMjGtzQ2lR5mYVj1/i0Y8uDAOLczkL3/jArrwehfMD0YogMAA==" }, "xunit.core": { "type": "Transitive", - "resolved": "2.7.0", - "contentHash": "98tzqYAbtc/p/2Ba455XTNbD12Qoo8kPehjC4oDT46CAsLli5JOCU9hFF2MV3HHWMw/Y3yFUV2Vcukplbs6kuA==", + "resolved": "2.9.3", + "contentHash": "BiAEvqGvyme19wE0wTKdADH+NloYqikiU0mcnmiNyXaF9HyHmE6sr/3DC5vnBkgsWaE6yPyWszKSPSApWdRVeQ==", "dependencies": { - "xunit.extensibility.core": "[2.7.0]", - "xunit.extensibility.execution": "[2.7.0]" + "xunit.extensibility.core": "[2.9.3]", + "xunit.extensibility.execution": "[2.9.3]" } }, "xunit.extensibility.core": { "type": "Transitive", - "resolved": "2.7.0", - "contentHash": "JLnx4PI0vn1Xr1Ust6ydrp2t/ktm2dyGPAVoDJV5gQuvBMSbd2K7WGzODa2ttiz030CeQ8nbsXl05+cvf7QNyA==", + "resolved": "2.9.3", + "contentHash": "kf3si0YTn2a8J8eZNb+zFpwfoyvIrQ7ivNk5ZYA5yuYk1bEtMe4DxJ2CF/qsRgmEnDr7MnW1mxylBaHTZ4qErA==", "dependencies": { "xunit.abstractions": "2.0.3" } }, "xunit.extensibility.execution": { "type": "Transitive", - "resolved": "2.7.0", - "contentHash": "bjY+crT1jOyxKagFjCMdEVzoenO2v66ru8+CK/0UaXvyG4U9Q3UTieJkbQXbi7/1yZIK1sGh01l5/jh2CwLJtQ==", + "resolved": "2.9.3", + "contentHash": "yMb6vMESlSrE3Wfj7V6cjQ3S4TXdXpRqYeNEI3zsX31uTsGMJjEw6oD5F5u1cHnMptjhEECnmZSsPxB6ChZHDQ==", "dependencies": { - "xunit.extensibility.core": "[2.7.0]" + "xunit.extensibility.core": "[2.9.3]" } }, "ZstdSharp.Port": { @@ -1917,11 +1907,11 @@ "monai.deploy.workflowmanager": { "type": "Project", "dependencies": { - "AspNetCore.HealthChecks.MongoDb": "[8.0.0, )", - "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "[8.0.0, )", - "Monai.Deploy.Messaging.RabbitMQ": "[2.0.2, )", - "Monai.Deploy.Security": "[1.0.0, )", - "Monai.Deploy.Storage.MinIO": "[1.0.0, )", + "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, )", @@ -1931,9 +1921,10 @@ "Monai.Deploy.WorkflowManager.PayloadListener": "[1.0.0, )", "Monai.Deploy.WorkflowManager.Services": "[1.0.0, )", "Mongo.Migration": "[3.1.4, )", - "NLog": "[5.2.8, )", - "NLog.Web.AspNetCore": "[5.3.8, )", - "Swashbuckle.AspNetCore": "[6.5.0, )" + "MongoDB.Driver": "[2.30.0, )", + "NLog": "[5.4.0, )", + "NLog.Web.AspNetCore": "[5.4.0, )", + "Swashbuckle.AspNetCore": "[8.0.0, )" } }, "monai.deploy.workflowmanager.common": { @@ -1948,15 +1939,15 @@ "monai.deploy.workflowmanager.common.configuration": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.2, )", - "Monai.Deploy.Storage": "[1.0.0, )" + "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": { @@ -1971,7 +1962,7 @@ "monai.deploy.workflowmanager.contracts": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.2, )", + "Monai.Deploy.Messaging": "[2.0.4, )", "Mongo.Migration": "[3.1.4, )", "MongoDB.Bson": "[2.23.1, )" } @@ -1982,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.23.1, )" + "MongoDB.Driver": "[2.30.0, )" } }, "monai.deploy.workflowmanager.logging": { @@ -2011,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, )" } @@ -2019,7 +2010,7 @@ "monai.deploy.workflowmanager.storage": { "type": "Project", "dependencies": { - "Monai.Deploy.Storage": "[1.0.0, )", + "Monai.Deploy.Storage": "[1.0.2, )", "Monai.Deploy.WorkflowManager.Contracts": "[1.0.0, )", "Monai.Deploy.WorkflowManager.Logging": "[1.0.0, )" } @@ -2027,7 +2018,7 @@ "monai.deploy.workloadmanager.workflowexecuter": { "type": "Project", "dependencies": { - "Monai.Deploy.Messaging": "[2.0.2, )", + "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, )",