From 879bd0b5ea05ecaa4cdd9b9420eee2a30acb10e3 Mon Sep 17 00:00:00 2001 From: Victor Chang Date: Tue, 19 Dec 2023 17:03:52 -0800 Subject: [PATCH 1/4] Upgrade to .NET 8 Signed-off-by: Victor Chang --- global.json | 2 +- .../BasicAuthorizationMiddleware.cs | 2 +- .../Middleware/BypassAuthenticationHandler.cs | 5 +-- ...onai.Deploy.Security.Authentication.csproj | 29 +++++--------- .../Tests/BasicAuthorizationMiddlewareTest.cs | 16 ++++---- .../EndpointAuthorizationMiddlewareTest.cs | 38 +++++++++---------- ...eploy.Security.Authentication.Tests.csproj | 29 +++++++------- src/Monai.Deploy.Security.sln | 6 +-- 8 files changed, 56 insertions(+), 71 deletions(-) diff --git a/global.json b/global.json index d6c2c37..501e79a 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "6.0.100", + "version": "8.0.100", "rollForward": "latestFeature" } } \ No newline at end of file diff --git a/src/Authentication/Middleware/BasicAuthorizationMiddleware.cs b/src/Authentication/Middleware/BasicAuthorizationMiddleware.cs index 4da69cf..10fbed3 100755 --- a/src/Authentication/Middleware/BasicAuthorizationMiddleware.cs +++ b/src/Authentication/Middleware/BasicAuthorizationMiddleware.cs @@ -56,7 +56,7 @@ public async Task InvokeAsync(HttpContext httpContext) } try { - var authHeader = AuthenticationHeaderValue.Parse(httpContext.Request.Headers["Authorization"]); + var authHeader = AuthenticationHeaderValue.Parse(httpContext.Request.Headers.Authorization!); if (authHeader.Scheme == "Basic") { var credentialBytes = Convert.FromBase64String(authHeader.Parameter ?? ""); diff --git a/src/Authentication/Middleware/BypassAuthenticationHandler.cs b/src/Authentication/Middleware/BypassAuthenticationHandler.cs index 52ce536..95ff32a 100644 --- a/src/Authentication/Middleware/BypassAuthenticationHandler.cs +++ b/src/Authentication/Middleware/BypassAuthenticationHandler.cs @@ -28,9 +28,8 @@ public class BypassAuthenticationHandler : AuthenticationHandler options, ILoggerFactory logger, - UrlEncoder encoder, - ISystemClock clock) - : base(options, logger, encoder, clock) + UrlEncoder encoder) + : base(options, logger, encoder) { } diff --git a/src/Authentication/Monai.Deploy.Security.Authentication.csproj b/src/Authentication/Monai.Deploy.Security.Authentication.csproj index 9e851dc..2403440 100644 --- a/src/Authentication/Monai.Deploy.Security.Authentication.csproj +++ b/src/Authentication/Monai.Deploy.Security.Authentication.csproj @@ -14,10 +14,9 @@ ~ limitations under the License. --> - Monai.Deploy.Security.Authentication - net6.0 + net8.0 enable enable false @@ -26,12 +25,10 @@ true $(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb - - Monai.Deploy.Security 0.1.0 @@ -45,29 +42,23 @@ Apache-2.0 True - - - - - - PreserveNewest @@ -75,15 +66,13 @@ PreserveNewest - - - - - - - - + + + + + + + - - + \ No newline at end of file diff --git a/src/Authentication/Tests/BasicAuthorizationMiddlewareTest.cs b/src/Authentication/Tests/BasicAuthorizationMiddlewareTest.cs index eaca22f..7628d6b 100755 --- a/src/Authentication/Tests/BasicAuthorizationMiddlewareTest.cs +++ b/src/Authentication/Tests/BasicAuthorizationMiddlewareTest.cs @@ -31,13 +31,13 @@ public partial class BasicAuthorizationMiddlewareTest [Fact] public async Task GivenConfigurationFileToBypassAuthentication_ExpectToBypassAuthentication() { - using var host = await new HostBuilder().ConfigureWebHost(SetupWebServer("test.basicbypass.json")).StartAsync().ConfigureAwait(false); + using var host = await new HostBuilder().ConfigureWebHost(SetupWebServer("test.basicbypass.json")).StartAsync().ConfigureAwait(true); var server = host.GetTestServer(); server.BaseAddress = new Uri("https://example.com/"); var client = server.CreateClient(); - var responseMessage = await client.GetAsync("api/Test").ConfigureAwait(false); + var responseMessage = await client.GetAsync("api/Test").ConfigureAwait(true); Assert.True(responseMessage.IsSuccessStatusCode); } @@ -47,13 +47,13 @@ public async Task GivenConfigurationFileToBypassAuthentication_ExpectToBypassAut [Fact] public async Task GivenConfigurationFileWithBasicConfigured_WhenUserIsNotAuthenticated_ExpectToDenyRequest() { - using var host = await new HostBuilder().ConfigureWebHost(SetupWebServer("test.basic.json")).StartAsync().ConfigureAwait(false); + using var host = await new HostBuilder().ConfigureWebHost(SetupWebServer("test.basic.json")).StartAsync().ConfigureAwait(true); var server = host.GetTestServer(); server.BaseAddress = new Uri("https://example.com/"); var client = server.CreateClient(); - var responseMessage = await client.GetAsync("api/Test").ConfigureAwait(false); + var responseMessage = await client.GetAsync("api/Test").ConfigureAwait(true); Assert.Equal(HttpStatusCode.Unauthorized, responseMessage.StatusCode); } @@ -61,14 +61,14 @@ public async Task GivenConfigurationFileWithBasicConfigured_WhenUserIsNotAuthent [Fact] public async Task GivenConfigurationFileWithBasicConfigured_WhenUserIsAuthenticated_ExpectToAllowRequest() { - using var host = await new HostBuilder().ConfigureWebHost(SetupWebServer("test.basic.json")).StartAsync().ConfigureAwait(false); + using var host = await new HostBuilder().ConfigureWebHost(SetupWebServer("test.basic.json")).StartAsync().ConfigureAwait(true); var server = host.GetTestServer(); server.BaseAddress = new Uri("https://example.com/"); var client = server.CreateClient(); client.DefaultRequestHeaders.Add("Authorization", $"Basic {Convert.ToBase64String(Encoding.UTF8.GetBytes("user:pass"))}"); - var responseMessage = await client.GetAsync("api/Test").ConfigureAwait(false); + var responseMessage = await client.GetAsync("api/Test").ConfigureAwait(true); Assert.Equal(HttpStatusCode.OK, responseMessage.StatusCode); } @@ -76,14 +76,14 @@ public async Task GivenConfigurationFileWithBasicConfigured_WhenUserIsAuthentica [Fact] public async Task GivenConfigurationFileWithBasicConfigured_WhenHeaderIsInvalid_ExpectToDenyRequest() { - using var host = await new HostBuilder().ConfigureWebHost(SetupWebServer("test.basic.json")).StartAsync().ConfigureAwait(false); + using var host = await new HostBuilder().ConfigureWebHost(SetupWebServer("test.basic.json")).StartAsync().ConfigureAwait(true); var server = host.GetTestServer(); server.BaseAddress = new Uri("https://example.com/"); var client = server.CreateClient(); client.DefaultRequestHeaders.Add("Authorization", $"BasicBad {Convert.ToBase64String(Encoding.UTF8.GetBytes("user:pass"))}"); - var responseMessage = await client.GetAsync("api/Test").ConfigureAwait(false); + var responseMessage = await client.GetAsync("api/Test").ConfigureAwait(true); Assert.Equal(HttpStatusCode.Unauthorized, responseMessage.StatusCode); } diff --git a/src/Authentication/Tests/EndpointAuthorizationMiddlewareTest.cs b/src/Authentication/Tests/EndpointAuthorizationMiddlewareTest.cs index 016d933..59e878f 100755 --- a/src/Authentication/Tests/EndpointAuthorizationMiddlewareTest.cs +++ b/src/Authentication/Tests/EndpointAuthorizationMiddlewareTest.cs @@ -41,20 +41,20 @@ public async Task GivenConfigurationFilesIsBad_ExpectExceptionToBeThrown(string { await Assert.ThrowsAsync(async () => { - using var host = await new HostBuilder().ConfigureWebHost(SetupWebServer(configFile)).StartAsync().ConfigureAwait(false); - }).ConfigureAwait(false); + using var host = await new HostBuilder().ConfigureWebHost(SetupWebServer(configFile)).StartAsync().ConfigureAwait(true); + }).ConfigureAwait(true); } [Fact] public async Task GivenConfigurationFileToBypassAuthentication_ExpectToBypassAuthentication() { - using var host = await new HostBuilder().ConfigureWebHost(SetupWebServer("test.bypassd.json")).StartAsync().ConfigureAwait(false); + using var host = await new HostBuilder().ConfigureWebHost(SetupWebServer("test.bypassd.json")).StartAsync().ConfigureAwait(true); var server = host.GetTestServer(); server.BaseAddress = new Uri("https://example.com/"); var client = server.CreateClient(); - var responseMessage = await client.GetAsync("api/Test").ConfigureAwait(false); + var responseMessage = await client.GetAsync("api/Test").ConfigureAwait(true); Assert.True(responseMessage.IsSuccessStatusCode); } @@ -62,13 +62,13 @@ public async Task GivenConfigurationFileToBypassAuthentication_ExpectToBypassAut [Fact] public async Task GivenConfigurationFileWithOpenIdConfigured_WhenUserIsNotAuthenticated_ExpectToDenyRequest() { - using var host = await new HostBuilder().ConfigureWebHost(SetupWebServer("test.auth.json")).StartAsync().ConfigureAwait(false); + using var host = await new HostBuilder().ConfigureWebHost(SetupWebServer("test.auth.json")).StartAsync().ConfigureAwait(true); var server = host.GetTestServer(); server.BaseAddress = new Uri("https://example.com/"); var client = server.CreateClient(); - var responseMessage = await client.GetAsync("api/Test").ConfigureAwait(false); + var responseMessage = await client.GetAsync("api/Test").ConfigureAwait(true); Assert.Equal(HttpStatusCode.Unauthorized, responseMessage.StatusCode); } @@ -78,7 +78,7 @@ public async Task GivenConfigurationFileWithOpenIdConfigured_WhenUserIsNotAuthen [InlineData("role-with-test")] public async Task GivenConfigurationFileWithOpenIdConfigured_WhenUserIsAuthenticated_ExpectToServeTheRequest(string role) { - using var host = await new HostBuilder().ConfigureWebHost(SetupWebServer("test.auth.json")).StartAsync().ConfigureAwait(false); + using var host = await new HostBuilder().ConfigureWebHost(SetupWebServer("test.auth.json")).StartAsync().ConfigureAwait(true); var server = host.GetTestServer(); server.BaseAddress = new Uri("https://example.com/"); @@ -87,11 +87,11 @@ public async Task GivenConfigurationFileWithOpenIdConfigured_WhenUserIsAuthentic var client = server.CreateClient(); client.DefaultRequestHeaders.Add("Authorization", $"{JwtBearerDefaults.AuthenticationScheme} {token}"); - var responseMessage = await client.GetAsync("api/Test").ConfigureAwait(false); + var responseMessage = await client.GetAsync("api/Test").ConfigureAwait(true); Assert.Equal(HttpStatusCode.OK, responseMessage.StatusCode); - var data = await responseMessage.Content.ReadFromJsonAsync>().ConfigureAwait(false); + var data = await responseMessage.Content.ReadFromJsonAsync>().ConfigureAwait(true); Assert.NotNull(data); Assert.Collection(data, @@ -104,7 +104,7 @@ public async Task GivenConfigurationFileWithOpenIdConfigured_WhenUserIsAuthentic [InlineData("role-without-test")] public async Task GivenConfigurationFileWithOpenIdConfigured_WhenUserIsAuthenticatedWithoutProperRoles_ExpectToDenyRequest(string role) { - using var host = await new HostBuilder().ConfigureWebHost(SetupWebServer("test.auth.json")).StartAsync().ConfigureAwait(false); + using var host = await new HostBuilder().ConfigureWebHost(SetupWebServer("test.auth.json")).StartAsync().ConfigureAwait(true); var server = host.GetTestServer(); server.BaseAddress = new Uri("https://example.com/"); @@ -113,7 +113,7 @@ public async Task GivenConfigurationFileWithOpenIdConfigured_WhenUserIsAuthentic var client = server.CreateClient(); client.DefaultRequestHeaders.Add("Authorization", $"{JwtBearerDefaults.AuthenticationScheme} {token}"); - var responseMessage = await client.GetAsync("api/Test").ConfigureAwait(false); + var responseMessage = await client.GetAsync("api/Test").ConfigureAwait(true); Assert.Equal(HttpStatusCode.Forbidden, responseMessage.StatusCode); } @@ -122,7 +122,7 @@ public async Task GivenConfigurationFileWithOpenIdConfigured_WhenUserIsAuthentic [InlineData("role-with-test")] public async Task GivenConfigurationFileWithOpenIdConfigured_WhenUserProvidesAnExpiredToken_ExpectToDenyRequest(string role) { - using var host = await new HostBuilder().ConfigureWebHost(SetupWebServer("test.auth.json")).StartAsync().ConfigureAwait(false); + using var host = await new HostBuilder().ConfigureWebHost(SetupWebServer("test.auth.json")).StartAsync().ConfigureAwait(true); var server = host.GetTestServer(); server.BaseAddress = new Uri("https://example.com/"); @@ -131,7 +131,7 @@ public async Task GivenConfigurationFileWithOpenIdConfigured_WhenUserProvidesAnE var client = server.CreateClient(); client.DefaultRequestHeaders.Add("Authorization", $"{JwtBearerDefaults.AuthenticationScheme} {token}"); - var responseMessage = await client.GetAsync("api/Test").ConfigureAwait(false); + var responseMessage = await client.GetAsync("api/Test").ConfigureAwait(true); Assert.Equal(HttpStatusCode.Unauthorized, responseMessage.StatusCode); } @@ -140,13 +140,13 @@ public async Task GivenConfigurationFileWithOpenIdConfigured_WhenUserProvidesAnE [Fact] public async Task GivenConfigurationFileWithBasicConfigured_WhenUserIsNotAuthenticated_ExpectToDenyRequest() { - using var host = await new HostBuilder().ConfigureWebHost(SetupWebServer("test.basic.json")).StartAsync().ConfigureAwait(false); + using var host = await new HostBuilder().ConfigureWebHost(SetupWebServer("test.basic.json")).StartAsync().ConfigureAwait(true); var server = host.GetTestServer(); server.BaseAddress = new Uri("https://example.com/"); var client = server.CreateClient(); - var responseMessage = await client.GetAsync("api/Test").ConfigureAwait(false); + var responseMessage = await client.GetAsync("api/Test").ConfigureAwait(true); Assert.Equal(HttpStatusCode.Unauthorized, responseMessage.StatusCode); } @@ -154,14 +154,14 @@ public async Task GivenConfigurationFileWithBasicConfigured_WhenUserIsNotAuthent [Fact] public async Task GivenConfigurationFileWithBasicConfigured_WhenUserIsAuthenticated_ExpectToAllowRequest() { - using var host = await new HostBuilder().ConfigureWebHost(SetupWebServer("test.basic.json")).StartAsync().ConfigureAwait(false); + using var host = await new HostBuilder().ConfigureWebHost(SetupWebServer("test.basic.json")).StartAsync().ConfigureAwait(true); var server = host.GetTestServer(); server.BaseAddress = new Uri("https://example.com/"); var client = server.CreateClient(); client.DefaultRequestHeaders.Add("Authorization", $"Basic {Convert.ToBase64String(Encoding.UTF8.GetBytes("user:pass"))}"); - var responseMessage = await client.GetAsync("api/Test").ConfigureAwait(false); + var responseMessage = await client.GetAsync("api/Test").ConfigureAwait(true); Assert.Equal(HttpStatusCode.OK, responseMessage.StatusCode); } @@ -169,14 +169,14 @@ public async Task GivenConfigurationFileWithBasicConfigured_WhenUserIsAuthentica [Fact] public async Task GivenConfigurationFileWithBasicConfigured_WhenHeaderIsInvalid_ExpectToDenyRequest() { - using var host = await new HostBuilder().ConfigureWebHost(SetupWebServer("test.basic.json")).StartAsync().ConfigureAwait(false); + using var host = await new HostBuilder().ConfigureWebHost(SetupWebServer("test.basic.json")).StartAsync().ConfigureAwait(true); var server = host.GetTestServer(); server.BaseAddress = new Uri("https://example.com/"); var client = server.CreateClient(); client.DefaultRequestHeaders.Add("Authorization", $"BasicBad {Convert.ToBase64String(Encoding.UTF8.GetBytes("user:pass"))}"); - var responseMessage = await client.GetAsync("api/Test").ConfigureAwait(false); + var responseMessage = await client.GetAsync("api/Test").ConfigureAwait(true); Assert.Equal(HttpStatusCode.Unauthorized, responseMessage.StatusCode); } diff --git a/src/Authentication/Tests/Monai.Deploy.Security.Authentication.Tests.csproj b/src/Authentication/Tests/Monai.Deploy.Security.Authentication.Tests.csproj index e95e4bd..b099ffc 100644 --- a/src/Authentication/Tests/Monai.Deploy.Security.Authentication.Tests.csproj +++ b/src/Authentication/Tests/Monai.Deploy.Security.Authentication.Tests.csproj @@ -14,34 +14,29 @@ ~ limitations under the License. --> - - net6.0 + net8.0 enable enable - false - - - - - - + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all + + - - Always @@ -56,7 +51,9 @@ Always - - - - + + + + + + \ No newline at end of file diff --git a/src/Monai.Deploy.Security.sln b/src/Monai.Deploy.Security.sln index b43ee46..5ec564a 100644 --- a/src/Monai.Deploy.Security.sln +++ b/src/Monai.Deploy.Security.sln @@ -1,16 +1,16 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.3.32825.248 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Monai.Deploy.Security.Authentication", "Authentication\Monai.Deploy.Security.Authentication.csproj", "{2DC01463-154F-4FA9-936E-5F2467E022C6}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Monai.Deploy.Security.Authentication", "Authentication\Monai.Deploy.Security.Authentication.csproj", "{2DC01463-154F-4FA9-936E-5F2467E022C6}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Shared", "Shared", "{A34D1217-C6B6-42AC-B073-AF8E52C0A1A9}" ProjectSection(SolutionItems) = preProject AssemblyInfo.cs = AssemblyInfo.cs EndProjectSection EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Monai.Deploy.Security.Authentication.Tests", "Authentication\Tests\Monai.Deploy.Security.Authentication.Tests.csproj", "{6B62EFC6-BED1-4AE9-8094-5E1D9AB47D84}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Monai.Deploy.Security.Authentication.Tests", "Authentication\Tests\Monai.Deploy.Security.Authentication.Tests.csproj", "{6B62EFC6-BED1-4AE9-8094-5E1D9AB47D84}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution From 3646b29949358fad6b9ea16a21b43e564692db95 Mon Sep 17 00:00:00 2001 From: Victor Chang Date: Wed, 20 Dec 2023 11:51:15 -0800 Subject: [PATCH 2/4] Update licenses & CI Signed-off-by: Victor Chang --- .github/workflows/ci.yml | 16 +- doc/dependency_decisions.yml | 247 +- third-party-licenses.md | 5574 +++++++++++++++++++--------------- 3 files changed, 3226 insertions(+), 2611 deletions(-) mode change 100644 => 100755 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml old mode 100644 new mode 100755 index 7e9dbd9..853b57d --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,7 +51,7 @@ jobs: - uses: actions/setup-dotnet@v3 with: - dotnet-version: "6.0.x" + dotnet-version: "8.0.x" - name: Enable NuGet cache uses: actions/cache@v3.2.3 @@ -91,7 +91,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-dotnet@v3 with: - dotnet-version: "6.0.x" + dotnet-version: "8.0.x" - name: Enable Homebrew run: echo "/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin" >> $GITHUB_PATH @@ -133,11 +133,11 @@ jobs: uses: actions/setup-java@v3 with: distribution: 'zulu' - java-version: '11' + java-version: '17' - uses: actions/setup-dotnet@v3 with: - dotnet-version: "6.0.x" + dotnet-version: "8.0.x" - name: Enable NuGet cache uses: actions/cache@v3.2.3 @@ -187,7 +187,7 @@ jobs: - uses: codecov/codecov-action@v3.1.1 with: token: ${{ secrets.CODECOV_TOKEN }} - directory: "src/${{ env.TEST_RESULTS }}" + directory: "src/" files: "**/coverage.opencover.xml" flags: unittests name: codecov-umbrella @@ -219,7 +219,7 @@ jobs: - uses: actions/setup-dotnet@v3 with: - dotnet-version: "6.0.x" + dotnet-version: "8.0.x" - name: Enable NuGet cache uses: actions/cache@v3.2.3 @@ -292,7 +292,7 @@ jobs: env: NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} with: - dotnet-version: "6.0.x" + dotnet-version: "8.0.x" source-url: https://nuget.pkg.github.com/Project-MONAI/index.json - name: Publish to GitHub @@ -317,7 +317,7 @@ jobs: env: NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} with: - dotnet-version: "6.0.x" + dotnet-version: "8.0.x" source-url: https://nuget.pkg.github.com/Project-MONAI/index.json - name: Publish to GitHub diff --git a/doc/dependency_decisions.yml b/doc/dependency_decisions.yml index 1c67dfc..c16e3c6 100644 --- a/doc/dependency_decisions.yml +++ b/doc/dependency_decisions.yml @@ -4,259 +4,266 @@ - :who: mocsharp :why: MIT (https://github.com/ardalis/GuardClauses.Analyzers/raw/master/LICENSE) :versions: - - 4.0.1 + - 4.2.0 :when: 2022-08-16 23:10:21.184627612 Z -- - :approve - - JetBrains.Annotations - - :who: mocsharp - :why: MIT (https://github.com/JetBrains/JetBrains.Annotations/raw/main/license.md) - :versions: - - 2021.3.0 - :when: 2022-08-16 23:05:35.941494226 Z - - :approve - Microsoft.AspNetCore.Authentication.JwtBearer - :who: mocsharp :why: MIT (https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) :versions: - - 6.0.12 + - 8.0.0 :when: 2022-10-14 23:36:49.751931025 Z - - :approve - Microsoft.AspNetCore.TestHost - :who: mocsharp :why: MIT (https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) :versions: - - 6.0.12 + - 8.0.0 :when: 2022-10-14 23:36:49.751931025 Z -- - :approve - - Microsoft.CSharp - - :who: mocsharp - :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) - :versions: - - 4.5.0 - :when: 2022-08-16 23:05:47.910358457 Z - - :approve - Microsoft.CodeCoverage - :who: mocsharp :why: MIT (https://github.com/microsoft/vstest/raw/main/LICENSE) :versions: - - 17.4.1 + - 17.8.0 :when: 2022-08-16 23:05:48.342748414 Z - - :approve - Microsoft.Extensions.Configuration - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.1 + - 8.0.0 :when: 2022-08-16 23:05:55.977031585 Z - - :approve - Microsoft.Extensions.Configuration.Abstractions - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.0 + - 8.0.0 :when: 2022-08-16 23:05:56.428678166 Z - - :approve - Microsoft.Extensions.Configuration.Binder - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.0 + - 8.0.0 :when: 2022-08-16 23:05:56.869915708 Z - - :approve - Microsoft.Extensions.Configuration.CommandLine - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.0 + - 8.0.0 :when: 2022-08-16 23:05:57.317738091 Z - - :approve - Microsoft.Extensions.Configuration.EnvironmentVariables - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.1 + - 8.0.0 :when: 2022-08-16 23:05:58.210886620 Z - - :approve - Microsoft.Extensions.Configuration.FileExtensions - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.0 + - 8.0.0 :when: 2022-08-16 23:05:58.646414000 Z - - :approve - Microsoft.Extensions.Configuration.Json - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.0 + - 8.0.0 :when: 2022-08-16 23:05:59.140939154 Z - - :approve - Microsoft.Extensions.Configuration.UserSecrets - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.1 + - 8.0.0 :when: 2022-08-16 23:05:59.570260365 Z - - :approve - Microsoft.Extensions.DependencyInjection - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.0 + - 8.0.0 :when: 2022-08-16 23:06:00.904189459 Z - - :approve - Microsoft.Extensions.DependencyInjection.Abstractions - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.0 + - 8.0.0 + :when: 2022-08-16 23:06:01.778427777 Z +- - :approve + - Microsoft.Extensions.Diagnostics + - :who: mocsharp + :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + :versions: + - 8.0.0 + :when: 2022-08-16 23:06:00.904189459 Z +- - :approve + - Microsoft.Extensions.Diagnostics.Abstractions + - :who: mocsharp + :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + :versions: + - 8.0.0 :when: 2022-08-16 23:06:01.778427777 Z - - :approve - Microsoft.Extensions.FileProviders.Abstractions - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.0 + - 8.0.0 :when: 2022-08-16 23:06:02.711721543 Z - - :approve - Microsoft.Extensions.FileProviders.Physical - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.0 + - 8.0.0 :when: 2022-08-16 23:06:03.153109366 Z - - :approve - Microsoft.Extensions.FileSystemGlobbing - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.0 + - 8.0.0 :when: 2022-08-16 23:06:03.598159964 Z - - :approve - Microsoft.Extensions.Hosting - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.1 + - 8.0.0 :when: 2022-08-16 23:06:04.488545906 Z - - :approve - Microsoft.Extensions.Hosting.Abstractions - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.0 + - 8.0.0 :when: 2022-08-16 23:06:04.935613050 Z - - :approve - Microsoft.Extensions.Logging - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.0 + - 8.0.0 :when: 2022-08-16 23:06:05.840705669 Z - - :approve - Microsoft.Extensions.Logging.Abstractions - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.3 + - 8.0.0 :when: 2022-08-16 23:06:06.728283354 Z - - :approve - Microsoft.Extensions.Logging.Configuration - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.0 + - 8.0.0 :when: 2022-08-16 23:06:07.178037938 Z - - :approve - Microsoft.Extensions.Logging.Console - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.0 + - 8.0.0 :when: 2022-08-16 23:06:07.618174405 Z - - :approve - Microsoft.Extensions.Logging.Debug - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.0 + - 8.0.0 :when: 2022-08-16 23:06:08.061150392 Z - - :approve - Microsoft.Extensions.Logging.EventLog - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.0 + - 8.0.0 :when: 2022-08-16 23:06:08.503025043 Z - - :approve - Microsoft.Extensions.Logging.EventSource - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.0 + - 8.0.0 :when: 2022-08-16 23:06:08.971793852 Z - - :approve - Microsoft.Extensions.Options - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.0 + - 8.0.0 :when: 2022-08-16 23:06:10.315793104 Z - - :approve - Microsoft.Extensions.Options.ConfigurationExtensions - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.0 + - 8.0.0 :when: 2022-08-16 23:06:10.759567780 Z - - :approve - Microsoft.Extensions.Primitives - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.0 + - 8.0.0 :when: 2022-08-16 23:06:11.669234037 Z +- - :approve + - Microsoft.IdentityModel.Abstractions + - :who: mocsharp + :why: MIT (https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) + :versions: + - 7.0.3 + :when: 2022-10-14 23:37:14.398733049 Z - - :approve - Microsoft.IdentityModel.JsonWebTokens - :who: mocsharp :why: MIT (https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) :versions: - - 6.10.0 + - 7.0.3 :when: 2022-10-14 23:37:14.398733049 Z - - :approve - Microsoft.IdentityModel.Logging - :who: mocsharp :why: MIT (https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) :versions: - - 6.10.0 + - 7.0.3 :when: 2022-10-14 23:37:15.196566449 Z - - :approve - Microsoft.IdentityModel.Protocols - :who: mocsharp :why: MIT (https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) :versions: - - 6.10.0 + - 7.0.3 :when: 2022-10-14 23:37:16.007362554 Z - - :approve - Microsoft.IdentityModel.Protocols.OpenIdConnect - :who: mocsharp :why: MIT (https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) :versions: - - 6.10.0 + - 7.0.3 :when: 2022-10-14 23:37:16.403183970 Z - - :approve - Microsoft.IdentityModel.Tokens - :who: mocsharp :why: MIT (https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) :versions: - - 6.10.0 + - 7.0.3 :when: 2022-10-14 23:37:16.793759607 Z - - :approve - Microsoft.NET.Test.Sdk - :who: mocsharp :why: MIT (https://raw.githubusercontent.com/microsoft/vstest/main/LICENSE) :versions: - - 17.4.1 + - 17.8.0 :when: 2022-09-01 23:06:13.008314524 Z - - :approve - Microsoft.NETCore.Platforms @@ -277,14 +284,14 @@ - :who: mocsharp :why: MIT (https://github.com/microsoft/vstest/raw/v17.4.0/LICENSE) :versions: - - 17.4.1 + - 17.8.0 :when: 2022-08-16 23:06:16.175705981 Z - - :approve - Microsoft.TestPlatform.TestHost - :who: mocsharp :why: MIT (https://github.com/microsoft/vstest/raw/v17.4.0/LICENSE) :versions: - - 17.4.1 + - 17.8.0 :when: 2022-08-16 23:06:17.671459450 Z - - :approve - Microsoft.Win32.Primitives @@ -312,7 +319,7 @@ - :who: mocsharp :why: Apache-2.0 (https://github.com/NuGet/NuGet.Client/raw/dev/LICENSE.txt) :versions: - - 5.11.0 + - 6.5.0 :when: 2022-08-16 23:06:27.464713741 Z - - :approve - System.AppContext @@ -361,14 +368,14 @@ - :who: mocsharp :why: MICROSOFT .NET LIBRARY License (http://go.microsoft.com/fwlink/?LinkId=329770) :versions: - - 6.0.0 + - 8.0.0 :when: 2022-08-16 23:06:44.697068615 Z - - :approve - System.Diagnostics.EventLog - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.0 + - 8.0.0 :when: 2022-08-16 23:06:45.597825555 Z - - :approve - System.Diagnostics.Tools @@ -405,6 +412,13 @@ :versions: - 4.3.0 :when: 2022-08-16 23:06:49.237248446 Z +- - :approve + - System.IO.Pipelines + - :who: mocsharp + :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) + :versions: + - 8.0.0 + :when: 2022-08-16 23:06:53.356642197 Z - - :approve - System.IO - :who: mocsharp @@ -426,27 +440,6 @@ :versions: - 4.3.0 :when: 2022-08-16 23:06:52.443609672 Z -- - :approve - - runtime.native.System.Net.Http - - :who: mocsharp - :why: MICROSOFT .NET LIBRARY License (http://go.microsoft.com/fwlink/?LinkId=329770) - :versions: - - 4.3.0 - :when: 2022-08-16 23:07:41.735502132 Z -- - :approve - - runtime.native.System.Security.Cryptography.Apple - - :who: mocsharp - :why: MICROSOFT .NET LIBRARY License (http://go.microsoft.com/fwlink/?LinkId=329770) - :versions: - - 4.3.0 - :when: 2022-08-16 23:07:42.215870949 Z -- - :approve - - runtime.native.System.Security.Cryptography.OpenSsl - - :who: mocsharp - :why: MICROSOFT .NET LIBRARY License (http://go.microsoft.com/fwlink/?LinkId=329770) - :versions: - - 4.3.0 - :when: 2022-08-16 23:07:42.677550528 Z - - :approve - System.IO.FileSystem - :who: mocsharp @@ -473,7 +466,7 @@ - :who: mocsharp :why: MIT (https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) :versions: - - 6.10.0 + - 7.0.3 :when: 2022-10-14 23:37:56.206982078 Z - - :approve - System.Linq @@ -587,13 +580,6 @@ :versions: - 4.3.0 :when: 2022-08-16 23:07:04.967405911 Z -- - :approve - - System.Runtime.CompilerServices.Unsafe - - :who: mocsharp - :why: MIT (https://github.com/dotnet/corefx/raw/master/LICENSE.TXT) - :versions: - - 6.0.0 - :when: 2022-08-16 23:07:05.893799510 Z - - :approve - System.Runtime.Extensions - :who: mocsharp @@ -641,7 +627,7 @@ - :who: mocsharp :why: MICROSOFT .NET LIBRARY License ( http://go.microsoft.com/fwlink/?LinkId=329770) :versions: - - 4.5.0 + - 4.3.0 :when: 2022-08-16 23:07:12.460027529 Z - - :approve - System.Security.Cryptography.Csp @@ -678,6 +664,13 @@ :versions: - 4.3.0 :when: 2022-08-16 23:07:15.218020510 Z +- - :approve + - runtime.native.System.Net.Http + - :who: mocsharp + :why: MICROSOFT .NET LIBRARY License (http://go.microsoft.com/fwlink/?LinkId=329770) + :versions: + - 4.3.0 + :when: 2022-08-16 23:07:41.735502132 Z - - :approve - System.Text.Encoding - :who: mocsharp @@ -697,14 +690,14 @@ - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.0 + - 8.0.0 :when: 2022-08-16 23:07:19.377530263 Z - - :approve - System.Text.Json - :who: mocsharp :why: MIT (https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) :versions: - - 6.0.0 + - 8.0.0 :when: 2022-08-16 23:07:20.787263056 Z - - :approve - System.Text.RegularExpressions @@ -760,151 +753,173 @@ - :who: mocsharp :why: MIT (https://github.com/coverlet-coverage/coverlet/raw/master/LICENSE) :versions: - - 3.2.0 - :when: 2022-08-16 23:07:29.112978564 Z + - 6.0.0 + :when: 2022-08-16 21:40:21.855388365 Z - - :approve - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl - :who: mocsharp :why: MICROSOFT .NET LIBRARY License ( http://go.microsoft.com/fwlink/?LinkId=329770) :versions: - 4.3.0 - :when: 2022-08-16 23:07:37.975510010 Z + :when: 2022-08-16 21:40:22.289423980 Z - - :approve - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl - :who: mocsharp :why: MICROSOFT .NET LIBRARY License ( http://go.microsoft.com/fwlink/?LinkId=329770) :versions: - 4.3.0 - :when: 2022-08-16 23:07:38.916484375 Z + :when: 2022-08-16 21:40:22.712579013 Z - - :approve - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl - :who: mocsharp :why: MICROSOFT .NET LIBRARY License ( http://go.microsoft.com/fwlink/?LinkId=329770) :versions: - 4.3.0 - :when: 2022-08-16 23:07:39.846759614 Z + :when: 2022-08-16 21:40:23.140549879 Z - - :approve - runtime.native.System - :who: mocsharp :why: MICROSOFT .NET LIBRARY License ( http://go.microsoft.com/fwlink/?LinkId=329770) :versions: - 4.3.0 - :when: 2022-08-16 23:07:40.770387468 Z + :when: 2022-08-16 21:40:23.578082745 Z - - :approve - runtime.native.System.IO.Compression - :who: mocsharp :why: MICROSOFT .NET LIBRARY License ( http://go.microsoft.com/fwlink/?LinkId=329770) :versions: - 4.3.0 - :when: 2022-08-16 23:07:41.256353878 Z + :when: 2022-08-16 21:40:23.998148184 Z +- - :approve + - runtime.native.System.Net.Http + - :who: mocsharp + :why: MICROSOFT .NET LIBRARY License ( http://go.microsoft.com/fwlink/?LinkId=329770) + :versions: + - 4.3.0 + :when: 2022-08-16 21:40:24.434111736 Z +- - :approve + - runtime.native.System.Security.Cryptography.Apple + - :who: mocsharp + :why: MICROSOFT .NET LIBRARY License ( http://go.microsoft.com/fwlink/?LinkId=329770) + :versions: + - 4.3.0 + :when: 2022-08-16 21:40:24.868505894 Z +- - :approve + - runtime.native.System.Security.Cryptography.OpenSsl + - :who: mocsharp + :why: MICROSOFT .NET LIBRARY License ( http://go.microsoft.com/fwlink/?LinkId=329770) + :versions: + - 4.3.0 + :when: 2022-08-16 21:40:25.303742409 Z - - :approve - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl - :who: mocsharp :why: MICROSOFT .NET LIBRARY License ( http://go.microsoft.com/fwlink/?LinkId=329770) :versions: - 4.3.0 - :when: 2022-08-16 23:07:43.607437995 Z + :when: 2022-08-16 21:40:25.719795625 Z - - :approve - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl - :who: mocsharp :why: MICROSOFT .NET LIBRARY License ( http://go.microsoft.com/fwlink/?LinkId=329770) :versions: - 4.3.0 - :when: 2022-08-16 23:07:44.531336835 Z + :when: 2022-08-16 21:40:26.152928791 Z - - :approve - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple - :who: mocsharp :why: MICROSOFT .NET LIBRARY License ( http://go.microsoft.com/fwlink/?LinkId=329770) :versions: - 4.3.0 - :when: 2022-08-16 23:07:45.456102215 Z + :when: 2022-08-16 21:40:26.579463736 Z - - :approve - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl - :who: mocsharp :why: MICROSOFT .NET LIBRARY License ( http://go.microsoft.com/fwlink/?LinkId=329770) :versions: - 4.3.0 - :when: 2022-08-16 23:07:45.914491629 Z + :when: 2022-08-16 21:40:27.001874526 Z - - :approve - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl - :who: mocsharp :why: MICROSOFT .NET LIBRARY License ( http://go.microsoft.com/fwlink/?LinkId=329770) :versions: - 4.3.0 - :when: 2022-08-16 23:07:46.875356107 Z + :when: 2022-08-16 21:40:27.431289100 Z - - :approve - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl - :who: mocsharp :why: MICROSOFT .NET LIBRARY License ( http://go.microsoft.com/fwlink/?LinkId=329770) :versions: - 4.3.0 - :when: 2022-08-16 23:07:47.799517867 Z + :when: 2022-08-16 21:40:27.853144921 Z - - :approve - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl - :who: mocsharp :why: MICROSOFT .NET LIBRARY License ( http://go.microsoft.com/fwlink/?LinkId=329770) :versions: - 4.3.0 - :when: 2022-08-16 23:07:48.721519740 Z + :when: 2022-08-16 21:40:28.265837209 Z - - :approve - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl - :who: mocsharp :why: MICROSOFT .NET LIBRARY License ( http://go.microsoft.com/fwlink/?LinkId=329770) :versions: - 4.3.0 - :when: 2022-08-16 23:07:49.744187064 Z + :when: 2022-08-16 21:40:28.686857664 Z - - :approve - xunit - :who: mocsharp :why: Apache-2.0 ( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) :versions: - - 2.4.2 - :when: 2022-08-16 23:07:58.741042809 Z + - 2.6.3 + :when: 2022-08-16 21:40:29.166018542 Z - - :approve - xunit.abstractions - :who: mocsharp :why: Apache-2.0 ( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) :versions: - 2.0.3 - :when: 2022-08-16 23:07:59.230841326 Z + :when: 2022-08-16 21:40:29.587002932 Z - - :approve - xunit.analyzers - :who: mocsharp - :why: Apache-2.0 ( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) + :why: Apache-2.0 ( https://raw.githubusercontent.com/xunit/xunit.analyzers/master/LICENSE) :versions: - - 1.0.0 - :when: 2022-08-16 23:08:00.165216213 Z + - 1.7.0 + :when: 2022-08-16 21:40:30.047067134 Z - - :approve - xunit.assert - :who: mocsharp :why: Apache-2.0 ( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) :versions: - - 2.4.2 - :when: 2022-08-16 23:08:01.105384447 Z + - 2.6.3 + :when: 2022-08-16 21:40:30.526718458 Z - - :approve - xunit.core - :who: mocsharp :why: Apache-2.0 ( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) :versions: - - 2.4.2 - :when: 2022-08-16 23:08:02.057792372 Z + - 2.6.3 + :when: 2022-08-16 21:40:30.973515441 Z - - :approve - xunit.extensibility.core - :who: mocsharp :why: Apache-2.0 ( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) :versions: - - 2.4.2 + - 2.6.3 + :when: 2022-08-16 21:40:31.401607230 Z - - :approve - xunit.extensibility.execution - :who: mocsharp :why: Apache-2.0 ( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) :versions: - - 2.4.2 - :when: 2022-08-16 23:08:03.959558421 Z + - 2.6.3 + :when: 2022-08-16 21:40:31.845685693 Z - - :approve - xunit.runner.visualstudio - :who: mocsharp :why: MIT ( https://licenses.nuget.org/MIT) :versions: - - 2.4.5 - :when: 2022-08-16 23:08:04.892608686 Z + - 2.5.5 + :when: 2022-08-16 21:40:32.294717110 Z diff --git a/third-party-licenses.md b/third-party-licenses.md index 0d3e9ba..62efe17 100644 --- a/third-party-licenses.md +++ b/third-party-licenses.md @@ -14,16 +14,15 @@ See the License for the specific language governing permissions and limitations under the License. --> - # Third-Party Licenses
-Microsoft .NET 6 6.0 +Microsoft .NET 8 8.0 -## Microsoft .NET 6 +## Microsoft .NET 8 -- Version: 6.0 +- Version: 8.0 - Source: https://dot.net - Publisher: Microsoft - Project URL: https://dotnet.microsoft.com/en-us/ @@ -61,14 +60,14 @@ SOFTWARE.
-Ardalis.GuardClauses 4.0.1 +Ardalis.GuardClauses 4.2.0 ## Ardalis.GuardClauses -- Version: 4.0.1 +- Version: 4.2.0 - Authors: Steve Smith (@ardalis) - Project URL: https://github.com/ardalis/guardclauses -- Source: [NuGet](https://www.nuget.org/packages/Ardalis.GuardClauses/4.0.1) +- Source: [NuGet](https://www.nuget.org/packages/Ardalis.GuardClauses/4.2.0) - License: [MIT](https://github.com/ardalis/GuardClauses.Analyzers/raw/master/LICENSE) @@ -100,22 +99,23 @@ SOFTWARE.
-JetBrains.Annotations 2021.3.0 +Microsoft.AspNetCore.Authentication.JwtBearer 8.0.0 -## JetBrains.Annotations +## Microsoft.AspNetCore.Authentication.JwtBearer -- Version: 2021.3.0 -- Authors: JetBrains -- Owners: JetBrains -- Project URL: https://www.jetbrains.com/help/resharper/Code_Analysis__Code_Annotations.html -- Source: [NuGet](https://www.nuget.org/packages/JetBrains.Annotations/2021.3.0) -- License: [MIT](https://github.com/JetBrains/JetBrains.Annotations/raw/main/license.md) +- Version: 8.0.0 +- Authors: Microsoft +- Project URL: https://asp.net/ +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.Authentication.JwtBearer/8.0.0) +- License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) ``` -MIT License +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors -Copyright (c) 2016 JetBrains http://www.jetbrains.com +All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -140,14 +140,14 @@ SOFTWARE.
-Microsoft.AspNetCore.Authentication.JwtBearer 6.0.12 +Microsoft.AspNetCore.TestHost 8.0.0 -## Microsoft.AspNetCore.Authentication.JwtBearer +## Microsoft.AspNetCore.TestHost -- Version: 6.0.12 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.Authentication.JwtBearer/6.0.12) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.TestHost/8.0.0) - License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) @@ -181,21 +181,21 @@ SOFTWARE.
-Microsoft.AspNetCore.TestHost 6.0.12 +Microsoft.CodeCoverage 17.8.0 -## Microsoft.AspNetCore.TestHost +## Microsoft.CodeCoverage -- Version: 6.0.12 +- Version: 17.8.0 - Authors: Microsoft -- Project URL: https://asp.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.TestHost/6.0.12) -- License: [MIT](https://github.com/dotnet/aspnetcore/raw/main/LICENSE.txt) +- Project URL: https://github.com/microsoft/vstest +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.CodeCoverage/17.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. @@ -222,15 +222,14 @@ SOFTWARE.
-Microsoft.CSharp 4.5.0 +Microsoft.Extensions.Configuration 8.0.0 -## Microsoft.CSharp +## Microsoft.Extensions.Configuration -- Version: 4.5.0 +- Version: 8.0.0 - Authors: Microsoft -- Owners: microsoft,dotnetframework - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.CSharp/4.5.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) @@ -264,20 +263,23 @@ SOFTWARE.
-Microsoft.CodeCoverage 17.4.1 +Microsoft.Extensions.Configuration.Abstractions 8.0.0 -## Microsoft.CodeCoverage +## Microsoft.Extensions.Configuration.Abstractions -- Version: 17.4.1 +- Version: 8.0.0 - Authors: Microsoft -- Owners: Microsoft -- Project URL: https://github.com/microsoft/vstest/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.CodeCoverage/17.4.1) -- License: [MIT](https://github.com/microsoft/vstest/raw/main/LICENSE) +- 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) ``` -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 @@ -302,14 +304,14 @@ SOFTWARE.
-Microsoft.Extensions.Configuration 6.0.1 +Microsoft.Extensions.Configuration.Binder 8.0.0 -## Microsoft.Extensions.Configuration +## 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.Configuration/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) @@ -343,14 +345,14 @@ SOFTWARE.
-Microsoft.Extensions.Configuration.Abstractions 6.0.0 +Microsoft.Extensions.Configuration.CommandLine 8.0.0 -## Microsoft.Extensions.Configuration.Abstractions +## Microsoft.Extensions.Configuration.CommandLine -- Version: 6.0.0 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Abstractions/6.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) @@ -384,14 +386,14 @@ SOFTWARE.
-Microsoft.Extensions.Configuration.Binder 6.0.0 +Microsoft.Extensions.Configuration.EnvironmentVariables 8.0.0 -## Microsoft.Extensions.Configuration.Binder +## Microsoft.Extensions.Configuration.EnvironmentVariables -- Version: 6.0.0 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Binder/6.0.0) +- 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) @@ -425,14 +427,14 @@ SOFTWARE.
-Microsoft.Extensions.Configuration.CommandLine 6.0.0 +Microsoft.Extensions.Configuration.FileExtensions 8.0.0 -## Microsoft.Extensions.Configuration.CommandLine +## Microsoft.Extensions.Configuration.FileExtensions -- Version: 6.0.0 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.CommandLine/6.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) @@ -466,14 +468,14 @@ SOFTWARE.
-Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.1 +Microsoft.Extensions.Configuration.Json 8.0.0 -## Microsoft.Extensions.Configuration.EnvironmentVariables +## Microsoft.Extensions.Configuration.Json -- Version: 6.0.1 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.1) +- 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) @@ -507,14 +509,14 @@ SOFTWARE.
-Microsoft.Extensions.Configuration.FileExtensions 6.0.0 +Microsoft.Extensions.Configuration.UserSecrets 8.0.0 -## Microsoft.Extensions.Configuration.FileExtensions +## Microsoft.Extensions.Configuration.UserSecrets -- Version: 6.0.0 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.FileExtensions/6.0.0) +- 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) @@ -548,14 +550,14 @@ SOFTWARE.
-Microsoft.Extensions.Configuration.Json 6.0.0 +Microsoft.Extensions.DependencyInjection 8.0.0 -## Microsoft.Extensions.Configuration.Json +## Microsoft.Extensions.DependencyInjection -- Version: 6.0.0 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Json/6.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) @@ -589,14 +591,14 @@ SOFTWARE.
-Microsoft.Extensions.Configuration.UserSecrets 6.0.1 +Microsoft.Extensions.DependencyInjection.Abstractions 8.0.0 -## Microsoft.Extensions.Configuration.UserSecrets +## Microsoft.Extensions.DependencyInjection.Abstractions -- Version: 6.0.1 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.UserSecrets/6.0.1) +- 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) @@ -630,14 +632,14 @@ SOFTWARE.
-Microsoft.Extensions.DependencyInjection 6.0.0 +Microsoft.Extensions.Diagnostics 8.0.0 -## Microsoft.Extensions.DependencyInjection +## Microsoft.Extensions.Diagnostics -- Version: 6.0.0 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Diagnostics/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -671,14 +673,14 @@ SOFTWARE.
-Microsoft.Extensions.DependencyInjection.Abstractions 6.0.0 +Microsoft.Extensions.Diagnostics.Abstractions 8.0.0 -## Microsoft.Extensions.DependencyInjection.Abstractions +## Microsoft.Extensions.Diagnostics.Abstractions -- Version: 6.0.0 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Diagnostics.Abstractions/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -712,14 +714,14 @@ SOFTWARE.
-Microsoft.Extensions.FileProviders.Abstractions 6.0.0 +Microsoft.Extensions.FileProviders.Abstractions 8.0.0 ## Microsoft.Extensions.FileProviders.Abstractions -- Version: 6.0.0 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Abstractions/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Abstractions/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -753,14 +755,14 @@ SOFTWARE.
-Microsoft.Extensions.FileProviders.Physical 6.0.0 +Microsoft.Extensions.FileProviders.Physical 8.0.0 ## Microsoft.Extensions.FileProviders.Physical -- Version: 6.0.0 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Physical/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Physical/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -794,14 +796,14 @@ SOFTWARE.
-Microsoft.Extensions.FileSystemGlobbing 6.0.0 +Microsoft.Extensions.FileSystemGlobbing 8.0.0 ## Microsoft.Extensions.FileSystemGlobbing -- Version: 6.0.0 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.FileSystemGlobbing/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.FileSystemGlobbing/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -835,14 +837,14 @@ SOFTWARE.
-Microsoft.Extensions.Hosting 6.0.1 +Microsoft.Extensions.Hosting 8.0.0 ## Microsoft.Extensions.Hosting -- Version: 6.0.1 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Hosting/6.0.1) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Hosting/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -876,14 +878,14 @@ SOFTWARE.
-Microsoft.Extensions.Hosting.Abstractions 6.0.0 +Microsoft.Extensions.Hosting.Abstractions 8.0.0 ## Microsoft.Extensions.Hosting.Abstractions -- Version: 6.0.0 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Hosting.Abstractions/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Hosting.Abstractions/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -917,14 +919,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging 6.0.0 +Microsoft.Extensions.Logging 8.0.0 ## Microsoft.Extensions.Logging -- 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.Logging/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -958,14 +960,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging.Abstractions 6.0.3 +Microsoft.Extensions.Logging.Abstractions 8.0.0 ## Microsoft.Extensions.Logging.Abstractions -- Version: 6.0.3 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Abstractions/6.0.3) +- 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) @@ -999,14 +1001,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging.Configuration 6.0.0 +Microsoft.Extensions.Logging.Configuration 8.0.0 ## Microsoft.Extensions.Logging.Configuration -- 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.Configuration/6.0.0) +- 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) @@ -1040,14 +1042,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging.Console 6.0.0 +Microsoft.Extensions.Logging.Console 8.0.0 ## Microsoft.Extensions.Logging.Console -- 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.Console/6.0.0) +- 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) @@ -1081,14 +1083,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging.Debug 6.0.0 +Microsoft.Extensions.Logging.Debug 8.0.0 ## Microsoft.Extensions.Logging.Debug -- 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.Debug/6.0.0) +- 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) @@ -1122,14 +1124,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging.EventLog 6.0.0 +Microsoft.Extensions.Logging.EventLog 8.0.0 ## Microsoft.Extensions.Logging.EventLog -- 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.EventLog/6.0.0) +- 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) @@ -1163,14 +1165,14 @@ SOFTWARE.
-Microsoft.Extensions.Logging.EventSource 6.0.0 +Microsoft.Extensions.Logging.EventSource 8.0.0 ## Microsoft.Extensions.Logging.EventSource -- 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.EventSource/6.0.0) +- 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) @@ -1204,14 +1206,14 @@ SOFTWARE.
-Microsoft.Extensions.Options 6.0.0 +Microsoft.Extensions.Options 8.0.0 ## Microsoft.Extensions.Options -- Version: 6.0.0 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Options/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Options/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -1245,14 +1247,14 @@ SOFTWARE.
-Microsoft.Extensions.Options.ConfigurationExtensions 6.0.0 +Microsoft.Extensions.Options.ConfigurationExtensions 8.0.0 ## Microsoft.Extensions.Options.ConfigurationExtensions -- Version: 6.0.0 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -1286,14 +1288,14 @@ SOFTWARE.
-Microsoft.Extensions.Primitives 6.0.0 +Microsoft.Extensions.Primitives 8.0.0 ## Microsoft.Extensions.Primitives -- Version: 6.0.0 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Primitives/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.Extensions.Primitives/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -1327,14 +1329,53 @@ SOFTWARE.
-Microsoft.IdentityModel.JsonWebTokens 6.10.0 +Microsoft.IdentityModel.Abstractions 7.0.3 + +## Microsoft.IdentityModel.Abstractions + +- Version: 7.0.3 +- Authors: Microsoft +- Project URL: https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.IdentityModel.Abstractions/7.0.3) +- License: [MIT](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/raw/dev/LICENSE.txt) + + +``` +The MIT License (MIT) + +Copyright (c) Microsoft Corporation + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +``` + +
+ + +
+Microsoft.IdentityModel.JsonWebTokens 7.0.3 ## Microsoft.IdentityModel.JsonWebTokens -- Version: 6.10.0 +- 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/6.10.0) +- 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) @@ -1366,14 +1407,14 @@ SOFTWARE.
-Microsoft.IdentityModel.Logging 6.10.0 +Microsoft.IdentityModel.Logging 7.0.3 ## Microsoft.IdentityModel.Logging -- Version: 6.10.0 +- 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/6.10.0) +- 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) @@ -1405,14 +1446,14 @@ SOFTWARE.
-Microsoft.IdentityModel.Protocols 6.10.0 +Microsoft.IdentityModel.Protocols 7.0.3 ## Microsoft.IdentityModel.Protocols -- Version: 6.10.0 +- 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/6.10.0) +- 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) @@ -1444,14 +1485,14 @@ SOFTWARE.
-Microsoft.IdentityModel.Protocols.OpenIdConnect 6.10.0 +Microsoft.IdentityModel.Protocols.OpenIdConnect 7.0.3 ## Microsoft.IdentityModel.Protocols.OpenIdConnect -- Version: 6.10.0 +- 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/6.10.0) +- 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) @@ -1483,14 +1524,14 @@ SOFTWARE.
-Microsoft.IdentityModel.Tokens 6.10.0 +Microsoft.IdentityModel.Tokens 7.0.3 ## Microsoft.IdentityModel.Tokens -- Version: 6.10.0 +- 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/6.10.0) +- 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) @@ -1522,20 +1563,23 @@ SOFTWARE.
-Microsoft.NET.Test.Sdk 17.4.1 +Microsoft.NET.Test.Sdk 17.8.0 ## Microsoft.NET.Test.Sdk -- Version: 17.4.1 +- Version: 17.8.0 - Authors: Microsoft -- Owners: Microsoft -- Project URL: https://github.com/microsoft/vstest/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/17.4.1) +- Project URL: https://github.com/microsoft/vstest +- Source: [NuGet](https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/17.8.0) - License: [MIT](https://raw.githubusercontent.com/microsoft/vstest/main/LICENSE) ``` -Copyright (c) 2020 Microsoft Corporation +The MIT License (MIT) + +Copyright (c) Microsoft Corporation + +All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -1573,6 +1617,11 @@ SOFTWARE. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -1588,7 +1637,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -1602,36 +1651,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -1640,11 +1689,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -1663,22 +1712,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -1687,10 +1736,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -1698,7 +1747,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -1719,10 +1768,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -1733,11 +1782,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -1773,6 +1822,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -1788,7 +1842,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -1802,36 +1856,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -1840,11 +1894,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -1863,22 +1917,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -1887,10 +1941,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -1898,7 +1952,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -1919,10 +1973,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -1933,11 +1987,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -1960,15 +2014,14 @@ consequential or other damages.
-Microsoft.TestPlatform.ObjectModel 17.4.1 +Microsoft.TestPlatform.ObjectModel 17.8.0 ## Microsoft.TestPlatform.ObjectModel -- Version: 17.4.1 +- Version: 17.8.0 - Authors: Microsoft -- Owners: Microsoft -- Project URL: https://github.com/microsoft/vstest/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/17.4.1) +- 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.0/LICENSE) @@ -1998,15 +2051,14 @@ SOFTWARE.
-Microsoft.TestPlatform.TestHost 17.4.1 +Microsoft.TestPlatform.TestHost 17.8.0 ## Microsoft.TestPlatform.TestHost -- Version: 17.4.1 +- Version: 17.8.0 - Authors: Microsoft -- Owners: Microsoft -- Project URL: https://github.com/microsoft/vstest/ -- Source: [NuGet](https://www.nuget.org/packages/Microsoft.TestPlatform.TestHost/17.4.1) +- 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.0/LICENSE) @@ -2049,6 +2101,11 @@ SOFTWARE. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -2064,7 +2121,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -2078,36 +2135,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -2116,11 +2173,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -2139,22 +2196,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -2163,10 +2220,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -2174,7 +2231,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -2195,10 +2252,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -2209,11 +2266,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -2249,6 +2306,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -2264,7 +2326,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -2278,36 +2340,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -2316,11 +2378,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -2339,22 +2401,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -2363,10 +2425,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -2374,7 +2436,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -2395,10 +2457,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -2409,11 +2471,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -2474,14 +2536,14 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-NuGet.Frameworks 5.11.0 +NuGet.Frameworks 6.5.0 ## NuGet.Frameworks -- Version: 5.11.0 +- Version: 6.5.0 - Authors: Microsoft - Project URL: https://aka.ms/nugetprj -- Source: [NuGet](https://www.nuget.org/packages/NuGet.Frameworks/5.11.0) +- 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) @@ -2520,6 +2582,11 @@ specific language governing permissions and limitations under the License. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -2535,7 +2602,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -2549,36 +2616,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -2587,11 +2654,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -2610,22 +2677,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -2634,10 +2701,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -2645,7 +2712,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -2666,10 +2733,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -2680,11 +2747,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -2720,6 +2787,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -2735,7 +2807,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -2749,36 +2821,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -2787,11 +2859,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -2810,22 +2882,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -2834,10 +2906,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -2845,7 +2917,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -2866,10 +2938,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -2880,11 +2952,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -2920,6 +2992,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -2935,7 +3012,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -2949,36 +3026,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -2987,11 +3064,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -3010,22 +3087,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -3034,10 +3111,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -3045,7 +3122,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -3066,10 +3143,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -3080,11 +3157,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -3120,6 +3197,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -3135,7 +3217,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -3149,36 +3231,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -3187,11 +3269,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -3210,22 +3292,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -3234,10 +3316,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -3245,7 +3327,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -3266,10 +3348,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -3280,11 +3362,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -3320,6 +3402,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -3335,7 +3422,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -3349,36 +3436,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -3387,11 +3474,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -3410,22 +3497,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -3434,10 +3521,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -3445,7 +3532,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -3466,10 +3553,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -3480,11 +3567,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -3520,6 +3607,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -3535,7 +3627,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -3549,36 +3641,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -3587,11 +3679,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -3610,22 +3702,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -3634,10 +3726,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -3645,7 +3737,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -3666,10 +3758,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -3680,11 +3772,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -3707,18 +3799,23 @@ consequential or other damages.
-System.Diagnostics.DiagnosticSource 6.0.0 +System.Diagnostics.DiagnosticSource 8.0.0 ## System.Diagnostics.DiagnosticSource -- Version: 6.0.0 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/8.0.0) - License: [MICROSOFT .NET LIBRARY License](http://go.microsoft.com/fwlink/?LinkId=329770) ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -3734,7 +3831,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -3748,36 +3845,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -3786,11 +3883,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -3809,22 +3906,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -3833,10 +3930,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -3844,7 +3941,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -3865,10 +3962,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -3879,11 +3976,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -3906,14 +4003,14 @@ consequential or other damages.
-System.Diagnostics.EventLog 6.0.0 +System.Diagnostics.EventLog 8.0.0 ## System.Diagnostics.EventLog -- Version: 6.0.0 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Diagnostics.EventLog/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/System.Diagnostics.EventLog/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -3960,6 +4057,11 @@ SOFTWARE. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -3975,7 +4077,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -3989,36 +4091,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -4027,11 +4129,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -4050,22 +4152,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -4074,10 +4176,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -4085,7 +4187,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -4106,10 +4208,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -4120,11 +4222,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -4160,6 +4262,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -4175,7 +4282,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -4189,36 +4296,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -4227,11 +4334,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -4250,22 +4357,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -4274,10 +4381,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -4285,7 +4392,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -4306,10 +4413,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -4320,11 +4427,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -4360,6 +4467,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -4375,7 +4487,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -4389,36 +4501,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -4427,11 +4539,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -4450,22 +4562,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -4474,10 +4586,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -4485,7 +4597,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -4506,10 +4618,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -4520,11 +4632,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -4560,6 +4672,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -4575,7 +4692,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -4589,36 +4706,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -4627,11 +4744,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -4650,22 +4767,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -4674,10 +4791,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -4685,7 +4802,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -4706,10 +4823,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -4720,11 +4837,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -4760,6 +4877,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -4775,7 +4897,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -4789,36 +4911,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -4827,11 +4949,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -4850,22 +4972,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -4874,10 +4996,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -4885,7 +5007,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -4906,10 +5028,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -4920,11 +5042,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -4960,6 +5082,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -4975,7 +5102,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -4989,36 +5116,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -5027,11 +5154,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -5050,22 +5177,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -5074,10 +5201,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -5085,7 +5212,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -5106,10 +5233,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -5120,11 +5247,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -5160,6 +5287,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -5175,7 +5307,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -5189,36 +5321,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -5227,11 +5359,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -5250,22 +5382,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -5274,10 +5406,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -5285,7 +5417,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -5306,10 +5438,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -5320,11 +5452,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -5360,6 +5492,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -5375,7 +5512,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -5389,36 +5526,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -5427,11 +5564,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -5450,22 +5587,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -5474,10 +5611,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -5485,7 +5622,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -5506,10 +5643,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -5520,11 +5657,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -5560,6 +5697,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -5575,7 +5717,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -5589,36 +5731,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -5627,11 +5769,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -5650,22 +5792,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -5674,10 +5816,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -5685,7 +5827,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -5706,10 +5848,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -5720,11 +5862,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -5760,6 +5902,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -5775,7 +5922,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -5789,36 +5936,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -5827,11 +5974,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -5850,22 +5997,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -5874,10 +6021,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -5885,7 +6032,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -5906,10 +6053,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -5920,11 +6067,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -5946,6 +6093,47 @@ consequential or other damages.
+
+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.IO.Pipelines 6.0.3 @@ -5988,14 +6176,14 @@ SOFTWARE.
-System.IdentityModel.Tokens.Jwt 6.10.0 +System.IdentityModel.Tokens.Jwt 7.0.3 ## System.IdentityModel.Tokens.Jwt -- Version: 6.10.0 +- 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/6.10.0) +- 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) @@ -6040,6 +6228,11 @@ SOFTWARE. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -6055,7 +6248,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -6069,36 +6262,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -6107,11 +6300,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -6130,22 +6323,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -6154,10 +6347,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -6165,7 +6358,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -6186,10 +6379,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -6200,11 +6393,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -6240,6 +6433,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -6255,7 +6453,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -6269,36 +6467,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -6307,11 +6505,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -6330,22 +6528,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -6354,10 +6552,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -6365,7 +6563,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -6386,10 +6584,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -6400,11 +6598,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -6440,6 +6638,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -6455,7 +6658,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -6469,36 +6672,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -6507,11 +6710,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -6530,22 +6733,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -6554,10 +6757,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -6565,7 +6768,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -6586,10 +6789,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -6600,11 +6803,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -6640,6 +6843,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -6655,7 +6863,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -6669,36 +6877,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -6707,11 +6915,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -6730,22 +6938,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -6754,10 +6962,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -6765,7 +6973,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -6786,10 +6994,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -6800,11 +7008,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -6840,6 +7048,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -6855,7 +7068,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -6869,36 +7082,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -6907,11 +7120,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -6930,22 +7143,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -6954,10 +7167,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -6965,7 +7178,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -6986,10 +7199,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -7000,11 +7213,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -7040,6 +7253,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -7055,7 +7273,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -7069,36 +7287,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -7107,11 +7325,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -7130,22 +7348,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -7154,10 +7372,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -7165,7 +7383,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -7186,10 +7404,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -7200,11 +7418,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -7240,6 +7458,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -7255,7 +7478,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -7269,36 +7492,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -7307,11 +7530,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -7330,22 +7553,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -7354,10 +7577,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -7365,7 +7588,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -7386,10 +7609,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -7400,11 +7623,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -7440,6 +7663,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -7455,7 +7683,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -7469,36 +7697,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -7507,11 +7735,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -7530,22 +7758,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -7554,10 +7782,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -7565,7 +7793,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -7586,10 +7814,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -7600,11 +7828,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -7640,6 +7868,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -7655,7 +7888,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -7669,36 +7902,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -7707,11 +7940,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -7730,22 +7963,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -7754,10 +7987,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -7765,7 +7998,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -7786,10 +8019,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -7800,11 +8033,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -7840,6 +8073,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -7855,7 +8093,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -7869,36 +8107,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -7907,11 +8145,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -7930,22 +8168,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -7954,10 +8192,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -7965,7 +8203,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -7986,10 +8224,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -8000,11 +8238,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -8040,6 +8278,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -8055,7 +8298,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -8069,36 +8312,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -8107,11 +8350,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -8130,22 +8373,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -8154,10 +8397,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -8165,7 +8408,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -8186,10 +8429,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -8200,11 +8443,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -8282,6 +8525,11 @@ SOFTWARE. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -8297,7 +8545,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -8311,36 +8559,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -8349,11 +8597,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -8372,22 +8620,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -8396,10 +8644,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -8407,7 +8655,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -8428,10 +8676,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -8442,11 +8690,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -8482,6 +8730,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -8497,7 +8750,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -8511,36 +8764,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -8549,11 +8802,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -8572,22 +8825,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -8596,10 +8849,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -8607,7 +8860,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -8628,10 +8881,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -8642,11 +8895,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -8682,6 +8935,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -8697,7 +8955,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -8711,36 +8969,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -8749,11 +9007,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -8772,22 +9030,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -8796,10 +9054,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -8807,7 +9065,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -8828,10 +9086,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -8842,11 +9100,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -8882,6 +9140,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -8897,7 +9160,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -8911,36 +9174,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -8949,11 +9212,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -8972,22 +9235,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -8996,10 +9259,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -9007,7 +9270,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -9028,10 +9291,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -9042,11 +9305,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -9068,47 +9331,6 @@ consequential or other damages.
-
-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 @@ -9123,6 +9345,11 @@ SOFTWARE. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -9138,7 +9365,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -9152,36 +9379,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -9190,11 +9417,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -9213,22 +9440,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -9237,10 +9464,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -9248,7 +9475,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -9269,10 +9496,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -9283,11 +9510,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -9323,6 +9550,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -9338,7 +9570,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -9352,36 +9584,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -9390,11 +9622,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -9413,22 +9645,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -9437,10 +9669,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -9448,7 +9680,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -9469,10 +9701,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -9483,11 +9715,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -9523,6 +9755,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -9538,7 +9775,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -9552,36 +9789,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -9590,11 +9827,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -9613,22 +9850,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -9637,10 +9874,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -9648,7 +9885,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -9669,10 +9906,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -9683,11 +9920,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -9723,6 +9960,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -9738,7 +9980,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -9752,36 +9994,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -9790,11 +10032,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -9813,22 +10055,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -9837,10 +10079,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -9848,7 +10090,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -9869,10 +10111,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -9883,11 +10125,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -9923,6 +10165,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -9938,7 +10185,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -9952,36 +10199,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -9990,11 +10237,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -10013,22 +10260,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -10037,10 +10284,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -10048,7 +10295,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -10069,10 +10316,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -10083,11 +10330,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -10123,6 +10370,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -10138,7 +10390,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -10152,36 +10404,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -10190,11 +10442,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -10213,22 +10465,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -10237,10 +10489,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -10248,7 +10500,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -10269,10 +10521,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -10283,11 +10535,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -10310,19 +10562,24 @@ consequential or other damages.
-System.Security.Cryptography.Cng 4.5.0 +System.Security.Cryptography.Cng 4.3.0 ## System.Security.Cryptography.Cng -- Version: 4.5.0 +- 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.5.0) +- Source: [NuGet](https://www.nuget.org/packages/System.Security.Cryptography.Cng/4.3.0) - License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -10338,7 +10595,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -10352,36 +10609,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -10390,11 +10647,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -10413,22 +10670,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -10437,10 +10694,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -10448,7 +10705,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -10469,10 +10726,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -10483,11 +10740,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -10523,6 +10780,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -10538,7 +10800,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -10552,36 +10814,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -10590,11 +10852,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -10613,22 +10875,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -10637,10 +10899,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -10648,7 +10910,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -10669,10 +10931,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -10683,11 +10945,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -10723,6 +10985,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -10738,7 +11005,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -10752,36 +11019,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -10790,11 +11057,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -10813,22 +11080,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -10837,10 +11104,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -10848,7 +11115,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -10869,10 +11136,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -10883,11 +11150,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -10923,6 +11190,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -10938,7 +11210,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -10952,36 +11224,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -10990,11 +11262,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -11013,22 +11285,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -11037,10 +11309,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -11048,7 +11320,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -11069,10 +11341,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -11083,11 +11355,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -11123,6 +11395,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -11138,7 +11415,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -11152,36 +11429,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -11190,11 +11467,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -11213,22 +11490,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -11237,10 +11514,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -11248,7 +11525,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -11269,10 +11546,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -11283,11 +11560,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -11323,6 +11600,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -11338,7 +11620,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -11352,36 +11634,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -11390,11 +11672,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -11413,22 +11695,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -11437,10 +11719,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -11448,7 +11730,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -11469,10 +11751,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -11483,11 +11765,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -11523,6 +11805,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -11538,7 +11825,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -11552,36 +11839,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -11590,11 +11877,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -11613,22 +11900,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -11637,10 +11924,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -11648,7 +11935,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -11669,10 +11956,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -11683,11 +11970,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -11723,6 +12010,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -11738,7 +12030,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -11752,36 +12044,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -11790,11 +12082,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -11813,22 +12105,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -11837,10 +12129,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -11848,7 +12140,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -11869,10 +12161,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -11883,11 +12175,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -11910,14 +12202,14 @@ consequential or other damages.
-System.Text.Encodings.Web 6.0.0 +System.Text.Encodings.Web 8.0.0 ## System.Text.Encodings.Web -- Version: 6.0.0 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Text.Encodings.Web/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/System.Text.Encodings.Web/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -11951,14 +12243,14 @@ SOFTWARE.
-System.Text.Json 6.0.0 +System.Text.Json 8.0.0 ## System.Text.Json -- Version: 6.0.0 +- Version: 8.0.0 - Authors: Microsoft - Project URL: https://dot.net/ -- Source: [NuGet](https://www.nuget.org/packages/System.Text.Json/6.0.0) +- Source: [NuGet](https://www.nuget.org/packages/System.Text.Json/8.0.0) - License: [MIT](https://github.com/dotnet/runtime/raw/main/LICENSE.TXT) @@ -12005,6 +12297,11 @@ SOFTWARE. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -12020,7 +12317,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -12034,36 +12331,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -12072,11 +12369,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -12095,22 +12392,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -12119,10 +12416,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -12130,7 +12427,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -12151,10 +12448,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -12165,11 +12462,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -12205,6 +12502,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -12220,7 +12522,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -12234,36 +12536,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -12272,11 +12574,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -12295,22 +12597,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -12319,10 +12621,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -12330,7 +12632,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -12351,10 +12653,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -12365,11 +12667,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -12405,6 +12707,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -12420,7 +12727,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -12434,36 +12741,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -12472,11 +12779,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -12495,22 +12802,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -12519,10 +12826,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -12530,7 +12837,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -12551,10 +12858,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -12565,11 +12872,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -12605,6 +12912,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -12620,7 +12932,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -12634,36 +12946,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -12672,11 +12984,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -12695,22 +13007,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -12719,10 +13031,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -12730,7 +13042,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -12751,10 +13063,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -12765,11 +13077,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -12805,6 +13117,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -12820,7 +13137,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -12834,36 +13151,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -12872,11 +13189,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -12895,22 +13212,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -12919,10 +13236,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -12930,7 +13247,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -12951,10 +13268,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -12965,11 +13282,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -13005,6 +13322,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -13020,7 +13342,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -13034,36 +13356,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -13072,11 +13394,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -13095,22 +13417,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -13119,10 +13441,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -13130,7 +13452,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -13151,10 +13473,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -13165,11 +13487,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -13205,6 +13527,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -13220,7 +13547,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -13234,36 +13561,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -13272,11 +13599,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -13295,22 +13622,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -13319,10 +13646,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -13330,7 +13657,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -13351,10 +13678,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -13365,11 +13692,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -13392,14 +13719,14 @@ consequential or other damages.
-coverlet.collector 3.2.0 +coverlet.collector 6.0.0 ## coverlet.collector -- Version: 3.2.0 +- Version: 6.0.0 - Authors: tonerdo - Project URL: https://github.com/coverlet-coverage/coverlet -- Source: [NuGet](https://www.nuget.org/packages/coverlet.collector/3.2.0) +- Source: [NuGet](https://www.nuget.org/packages/coverlet.collector/6.0.0) - License: [MIT](https://github.com/coverlet-coverage/coverlet/raw/master/LICENSE) @@ -13444,6 +13771,11 @@ SOFTWARE. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -13459,7 +13791,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -13473,36 +13805,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -13511,11 +13843,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -13534,22 +13866,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -13558,10 +13890,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -13569,7 +13901,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -13590,10 +13922,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -13604,11 +13936,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -13644,6 +13976,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -13659,7 +13996,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -13673,36 +14010,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -13711,11 +14048,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -13734,22 +14071,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -13758,10 +14095,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -13769,7 +14106,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -13790,10 +14127,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -13804,11 +14141,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -13844,6 +14181,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -13859,7 +14201,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -13873,36 +14215,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -13911,11 +14253,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -13934,22 +14276,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -13958,10 +14300,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -13969,7 +14311,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -13990,10 +14332,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -14004,11 +14346,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -14044,6 +14386,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -14059,7 +14406,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -14073,36 +14420,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -14111,11 +14458,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -14134,22 +14481,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -14158,10 +14505,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -14169,7 +14516,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -14190,10 +14537,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -14204,11 +14551,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -14244,6 +14591,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -14259,7 +14611,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -14273,36 +14625,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -14311,11 +14663,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -14334,22 +14686,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -14358,10 +14710,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -14369,7 +14721,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -14390,10 +14742,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -14404,11 +14756,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -14444,6 +14796,216 @@ consequential or other damages. ``` +.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 + +- 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 @@ -14459,7 +15021,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -14473,36 +15035,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -14511,11 +15073,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -14534,22 +15096,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -14558,10 +15120,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -14569,7 +15131,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -14590,10 +15152,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -14604,11 +15166,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -14640,10 +15202,15 @@ consequential or other damages. - 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) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -14659,7 +15226,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -14673,36 +15240,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -14711,11 +15278,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -14734,22 +15301,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -14758,10 +15325,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -14769,7 +15336,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -14790,10 +15357,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -14804,11 +15371,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -14840,10 +15407,15 @@ consequential or other damages. - 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) +- License: [MICROSOFT .NET LIBRARY License]( http://go.microsoft.com/fwlink/?LinkId=329770) ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -14859,7 +15431,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -14873,36 +15445,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -14911,11 +15483,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -14934,22 +15506,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -14958,10 +15530,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -14969,7 +15541,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -14990,10 +15562,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -15004,11 +15576,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -15044,6 +15616,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -15059,7 +15636,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -15073,36 +15650,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -15111,11 +15688,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -15134,22 +15711,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -15158,10 +15735,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -15169,7 +15746,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -15190,10 +15767,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -15204,11 +15781,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -15244,6 +15821,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -15259,7 +15841,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -15273,36 +15855,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -15311,11 +15893,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -15334,22 +15916,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -15358,10 +15940,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -15369,7 +15951,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -15390,10 +15972,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -15404,11 +15986,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -15444,6 +16026,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -15459,7 +16046,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -15473,36 +16060,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -15511,11 +16098,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -15534,22 +16121,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -15558,10 +16145,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -15569,7 +16156,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -15590,10 +16177,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -15604,11 +16191,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -15644,6 +16231,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -15659,7 +16251,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -15673,36 +16265,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -15711,11 +16303,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -15734,22 +16326,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -15758,10 +16350,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -15769,7 +16361,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -15790,10 +16382,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -15804,11 +16396,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -15844,6 +16436,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -15859,7 +16456,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -15873,36 +16470,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -15911,11 +16508,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -15934,22 +16531,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -15958,10 +16555,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -15969,7 +16566,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -15990,10 +16587,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -16004,11 +16601,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -16044,6 +16641,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -16059,7 +16661,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -16073,36 +16675,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -16111,11 +16713,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -16134,22 +16736,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -16158,10 +16760,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -16169,7 +16771,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -16190,10 +16792,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -16204,11 +16806,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -16244,6 +16846,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -16259,7 +16866,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -16273,36 +16880,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -16311,11 +16918,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -16334,22 +16941,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -16358,10 +16965,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -16369,7 +16976,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -16390,10 +16997,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -16404,11 +17011,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -16444,6 +17051,11 @@ consequential or other damages. ``` +.NET Library License Terms | .NET + + + + MICROSOFT SOFTWARE LICENSE TERMS @@ -16459,7 +17071,7 @@ software, except to the extent those have different terms. If you comply with these license terms, you have the rights below. -1.    INSTALLATION AND USE RIGHTS. +1.    INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software to develop and test your applications.  @@ -16473,36 +17085,36 @@ REQUIREMENTS AND/OR USE RIGHTS. a.     DISTRIBUTABLE CODE.  The software is -comprised of Distributable Code. �Distributable Code� is code that you are +comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. -i.      Right to Use and Distribute. -�        +i.      Right to Use and Distribute. +·        You may copy and distribute the object code form of the software. -�        +·        Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. ii.     Distribution Requirements. For any Distributable Code you distribute, you must -�        +·        use the Distributable Code in your applications and not as a standalone distribution; -�        +·        require distributors and external end users to agree to terms that protect it at least as much as this agreement; and -�        +·        indemnify, defend, and hold harmless Microsoft from any claims, -including attorneys� fees, related to the distribution or use of your applications, +including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. iii.   Distribution Restrictions. You may not -�        -use Microsoft�s trademarks in your applications� names or in a way +·        +use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or -�        +·        modify or distribute the source code of any Distributable Code so -that any part of it becomes subject to an Excluded License. An �Excluded -License� is one that requires, as a condition of use, modification or +that any part of it becomes subject to an Excluded License. An “Excluded +License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. 4.    @@ -16511,11 +17123,11 @@ a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products -and services.� You may opt-out of many of these scenarios, but not all, as -described in the software documentation.� There are also some features in the software that may enable you and +and services.  You may opt-out of many of these scenarios, but not all, as +described in the software documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing -appropriate notices to users of your applications together with Microsoft�s +appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these @@ -16534,22 +17146,22 @@ rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not -�        +·        work around any technical limitations in the software; -�        +·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; -�        +·        remove, minimize, block or modify -any notices of Microsoft or its suppliers in the software; -�        +any notices of Microsoft or its suppliers in the software; +·        use the software in any way that is against the law; or -�        +·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. @@ -16558,10 +17170,10 @@ Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information -on export restrictions, visit www.microsoft.com/exporting. � +on export restrictions, visit www.microsoft.com/exporting. 7.    SUPPORT -SERVICES. Because this software is �as is,� we may not provide +SERVICES. Because this software is “as is,” we may not provide support services for it. 8.    Entire @@ -16569,7 +17181,7 @@ Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. -9.    Applicable Law.� If you acquired the software in the United States, Washington law +9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. @@ -16590,10 +17202,10 @@ however, the software will resume checking for and installing updates), or unins the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. c)    Germany and Austria. -(i)������� Warranty. The software will perform +(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. -(ii)������ Limitation of Liability. In case of +(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. @@ -16604,11 +17216,11 @@ performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence -11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED �AS-IS.� YOU BEAR THE RISK +11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NON-INFRINGEMENT. +NON-INFRINGEMENT. 12. Limitation on and Exclusion of Remedies and Damages. YOU @@ -16631,13 +17243,13 @@ consequential or other damages.
-xunit 2.4.2 +xunit 2.6.3 ## xunit -- Version: 2.4.2 +- Version: 2.6.3 - Authors: jnewkirk,bradwilson -- Source: [NuGet](https://www.nuget.org/packages/xunit/2.4.2) +- Source: [NuGet](https://www.nuget.org/packages/xunit/2.6.3) - License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) @@ -16763,78 +17375,44 @@ Both sets of code are covered by the following license:
-xunit.analyzers 1.0.0 +xunit.analyzers 1.7.0 ## xunit.analyzers -- Version: 1.0.0 +- Version: 1.7.0 - Authors: jnewkirk,bradwilson,marcind -- Source: [NuGet](https://www.nuget.org/packages/xunit.analyzers/1.0.0) -- License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) +- Source: [NuGet](https://www.nuget.org/packages/xunit.analyzers/1.7.0) +- License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit.analyzers/master/LICENSE) ``` -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 +Copyright (c) .NET Foundation and Contributors +All Rights Reserved - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/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. ```
-xunit.assert 2.4.2 +xunit.assert 2.6.3 ## xunit.assert -- Version: 2.4.2 +- Version: 2.6.3 - Authors: jnewkirk,bradwilson -- Source: [NuGet](https://www.nuget.org/packages/xunit.assert/2.4.2) +- Source: [NuGet](https://www.nuget.org/packages/xunit.assert/2.6.3) - License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) @@ -16893,13 +17471,13 @@ Both sets of code are covered by the following license:
-xunit.core 2.4.2 +xunit.core 2.6.3 ## xunit.core -- Version: 2.4.2 +- Version: 2.6.3 - Authors: jnewkirk,bradwilson -- Source: [NuGet](https://www.nuget.org/packages/xunit.core/2.4.2) +- Source: [NuGet](https://www.nuget.org/packages/xunit.core/2.6.3) - License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) @@ -16958,13 +17536,13 @@ Both sets of code are covered by the following license:
-xunit.extensibility.core 2.4.2 +xunit.extensibility.core 2.6.3 ## xunit.extensibility.core -- Version: 2.4.2 +- Version: 2.6.3 - Authors: jnewkirk,bradwilson -- Source: [NuGet](https://www.nuget.org/packages/xunit.extensibility.core/2.4.2) +- Source: [NuGet](https://www.nuget.org/packages/xunit.extensibility.core/2.6.3) - License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) @@ -17023,13 +17601,13 @@ Both sets of code are covered by the following license:
-xunit.extensibility.execution 2.4.2 +xunit.extensibility.execution 2.6.3 ## xunit.extensibility.execution -- Version: 2.4.2 +- Version: 2.6.3 - Authors: jnewkirk,bradwilson -- Source: [NuGet](https://www.nuget.org/packages/xunit.extensibility.execution/2.4.2) +- Source: [NuGet](https://www.nuget.org/packages/xunit.extensibility.execution/2.6.3) - License: [Apache-2.0]( https://raw.githubusercontent.com/xunit/xunit/master/license.txt) @@ -17088,14 +17666,13 @@ Both sets of code are covered by the following license:
-xunit.runner.visualstudio 2.4.5 +xunit.runner.visualstudio 2.5.5 ## xunit.runner.visualstudio -- Version: 2.4.5 -- Authors: .NET Foundation and Contributors -- Project URL: https://github.com/xunit/visualstudio.xunit -- Source: [NuGet](https://www.nuget.org/packages/xunit.runner.visualstudio/2.4.5) +- Version: 2.5.5 +- Authors: jnewkirk,bradwilson +- Source: [NuGet](https://www.nuget.org/packages/xunit.runner.visualstudio/2.5.5) - License: [MIT]( https://licenses.nuget.org/MIT) @@ -17104,16 +17681,39 @@ Both sets of code are covered by the following license: +MIT License SPDX identifier MIT License text - MIT License _____ -Permission is hereby granted, free of charge, to any person obtaining a copy of _____ (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +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 -The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software. +Notice +This license content is provided by the SPDX project. For more information about licenses.nuget.org, see our documentation. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL _____ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +Data pulled from spdx/license-list-data on February 9, 2023. ```
From f61e2ecbed00fb3d56085acb8608f6a895fec760 Mon Sep 17 00:00:00 2001 From: Victor Chang Date: Wed, 20 Dec 2023 13:00:02 -0800 Subject: [PATCH 3/4] Update test config Signed-off-by: Victor Chang --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 853b57d..393f0c7 100755 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -174,6 +174,9 @@ jobs: working-directory: ./src - name: Test + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} run: find ~+ -type f -name "*.Tests.csproj" | xargs -L1 dotnet test -c ${{ env.BUILD_CONFIG }} -v=minimal -r "${{ env.TEST_RESULTS }}" --collect:"XPlat Code Coverage" --settings coverlet.runsettings working-directory: ./src From e1547104a61963484012b3f913804cfb85e8ea55 Mon Sep 17 00:00:00 2001 From: Victor Chang Date: Wed, 20 Dec 2023 13:01:45 -0800 Subject: [PATCH 4/4] Fix test param Signed-off-by: Victor Chang --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 393f0c7..52e4ee0 100755 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -177,7 +177,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - run: find ~+ -type f -name "*.Tests.csproj" | xargs -L1 dotnet test -c ${{ env.BUILD_CONFIG }} -v=minimal -r "${{ env.TEST_RESULTS }}" --collect:"XPlat Code Coverage" --settings coverlet.runsettings + run: find ~+ -type f -name "*.Tests.csproj" | xargs -L1 dotnet test -c ${{ env.BUILD_CONFIG }} -v=minimal --results-directory "${{ env.TEST_RESULTS }}" --collect:"XPlat Code Coverage" --settings coverlet.runsettings working-directory: ./src - name: End SonarScanner